Your fucking browser doesn't support JavaScript, so you can't post here.
VBsupport перешел с домена .ORG на родной .RU
Ура!
Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей
Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:
- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually
Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.
- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.
Please contact kerk or Luvilla regarding payments.
Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!
На форуме открыт новый раздел "
Каталог фрилансеров "
и отдельный раздел для платных заказов "
Куплю/Закажу "
Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба : при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
01-09-2008, 12:28 AM
Продвинутый
Join Date: Oct 2007
Location: /php5
Posts: 156
Версия vB: 1.x.x
Reputation:
Опытный 87
Репутация в разделе: 63
Замена картинки в .JS меню..
0
Дарова всем.
У меня такой вопрос:
Вот есть скрипт меню -
vbulletin_menu.js
Там есть маленькая картинка которая отображается на форуме рядом с текстом заголовка меню -
menu_open.gif
Вот её мне нужно заменить текстовым символом.
Но т.к. я не шарю в яве, то спрашиваю как это сделать?
Вот код..
Code:
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.7.0 Beta 2
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2007 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
vBulletin.add_event("vBmenuShow");
vBulletin.add_event("vBmenuHide");
/**
* vBulletin popup menu example usage:
*
* To create a new popup menu:
* <element id="x">Click me <script type="text/javascript"> vbmenu_register('x'); </script></element>
* The menu class expects an element with the id of x_menu that contains the menu.
* <div id="x_menu" class="vbmenu_popup"> ... </div>
*/
// #############################################################################
// vB_Popup_Handler
// #############################################################################
/**
* vBulletin popup menu registry
*
* @package vBulletin
* @version $Revision: 25131 $
* @date $Date: 2007-12-13 09:45:41 -0600 (Thu, 13 Dec 2007) $
* @author Kier Darby, vBulletin Development Team
*/
function vB_Popup_Handler()
{
/**
* Options:
*
* @var integer Number of steps to use in sliding menus open
* @var boolean Use opacity face in menu open?
*/
this.open_steps = 10;
this.open_fade = false;
this.active = false;
this.menus = new Array();
this.activemenu = null;
this.hidden_selects = new Array();
};
// =============================================================================
// vB_Popup_Handler methods
/**
* Activate / Deactivate the menu system
*
* @param boolean Active state for menus
*/
vB_Popup_Handler.prototype.activate = function(active)
{
this.active = active;
console.log("vBmenu :: System Activated");
};
/**
* Register a control object as a menu control
*
* @param string ID of the control object
* @param boolean Disable menu pop image addition
* @param boolean Disable menu slide open
*
* @return vB_Popup_Menu
*/
vB_Popup_Handler.prototype.register = function(controlkey, noimage, noslide)
{
//console.log("vBmenu :: registering '%s'", controlkey);
this.menus[controlkey] = new vB_Popup_Menu(controlkey, noimage, noslide);
return this.menus[controlkey];
};
/**
* Hide active menu
*/
vB_Popup_Handler.prototype.hide = function()
{
if (this.activemenu != null)
{
this.menus[this.activemenu].hide();
}
};
// #############################################################################
// initialize menu registry
var vBmenu = new vB_Popup_Handler();
/**
* Function to allow anything to hide all menus
*
* @param event Event object
*
* @return mixed
*/
function vbmenu_hide(e)
{
if (e && e.button && e.button != 1 && e.type == 'click')
{
return true;
}
else
{
vBmenu.hide();
}
};
// #############################################################################
// vB_Popup_Menu
// #############################################################################
/**
* vBulletin popup menu class constructor
*
* Manages a single menu and control object
* Initializes control object
*
* @package vBulletin
* @version $Revision: 25131 $
* @date $Date: 2007-12-13 09:45:41 -0600 (Thu, 13 Dec 2007) $
* @author Kier Darby, vBulletin Development Team
*
* @param string ID of the control object
* @param boolean Disable menu pop image addition
* @param boolean Disable menu slide open
*/
function vB_Popup_Menu(controlkey, noimage, noslide)
{
this.controlkey = controlkey;
this.menuname = this.controlkey.split('.')[0] + '_menu';
this.init_control(noimage);
if (fetch_object(this.menuname))
{
this.init_menu();
}
this.slide_open = (noslide ? false : true);
this.open_steps = vBmenu.open_steps;
vBulletin.add_event("vBmenuShow_" + this.controlkey);
vBulletin.add_event("vBmenuHide_" + this.controlkey);
};
// =============================================================================
// vB_Popup_Menu methods
/**
* Initialize the control object
*/
vB_Popup_Menu.prototype.init_control = function(noimage)
{
this.controlobj = fetch_object(this.controlkey);
this.controlobj.state = false;
if (this.controlobj.firstChild && (this.controlobj.firstChild.tagName == 'TEXTAREA' || this.controlobj.firstChild.tagName == 'INPUT'))
{
// do nothing
}
else
{
if (!noimage && !(is_mac && is_ie))
{
var space = document.createTextNode(' ');
this.controlobj.appendChild(space);
var img = document.createElement('img');
img.src = IMGDIR_MISC + '/menu_open.gif';
img.border = 0;
img.title = '';
img.alt = '';
this.controlobj.appendChild(img);
}
this.controlobj.unselectable = true;
if (!noimage)
{
this.controlobj.style.cursor = pointer_cursor;
}
this.controlobj.onclick = vB_Popup_Events.prototype.controlobj_onclick;
this.controlobj.onmouseover = vB_Popup_Events.prototype.controlobj_onmouseover;
}
};
/**
* Init the popup menu object
*/
vB_Popup_Menu.prototype.init_menu = function()
{
this.menuobj = fetch_object(this.menuname);
if (this.menuobj && !this.menuobj.initialized)
{
this.menuobj.initialized = true;
this.menuobj.onclick = e_by_gum;
this.menuobj.style.position = 'absolute';
this.menuobj.style.zIndex = 50;
// workaround border disappearing issues in IE
if (is_ie && !is_mac)
{
if (!is_ie7)
{
// this seems to fix it in < IE7, but IE7 disables ClearType with filters...
this.menuobj.style.filter += "alpha(enabled=1,opacity=100)";
}
else
{
// ...so use this trick for IE7. It seems to work, but I don't know why. :)
this.menuobj.style.minHeight = '1%';
}
}
this.init_menu_contents();
}
};
/**
* Init the popup menu contents
*/
vB_Popup_Menu.prototype.init_menu_contents = function()
{
var tags = new Array("td", "li");
for (var j = 0; j < tags.length; j++)
{
var blocks = fetch_tags(this.menuobj, tags[j]);
for (var i = 0; i < blocks.length; i++)
{
if (blocks[i].className == 'vbmenu_option')
{
if (blocks[i].title && blocks[i].title == 'nohilite')
{
// not an active cell
blocks[i].title = '';
}
else
{
// create a reference back to the menu class
blocks[i].controlkey = this.controlkey;
// handle mouseover / mouseout highlighting events
blocks[i].onmouseover = vB_Popup_Events.prototype.menuoption_onmouseover;
blocks[i].onmouseout = vB_Popup_Events.prototype.menuoption_onmouseout;
var links = fetch_tags(blocks[i], 'a');
if (links.length == 1)
{
/* Ok we have a link, we should use this if
1. There is no onclick event in the link
2. There is no onclick event on the cell
3. The onclick event for the cell should equal the link if the above are true
If we find a browser thats gets confused we may need to set remove_link to true for it.
*/
blocks[i].className = blocks[i].className + ' vbmenu_option_alink';
blocks[i].islink = true;
var linkobj = links[0];
var remove_link = false;
blocks[i].target = linkobj.getAttribute('target');
if (typeof linkobj.onclick == 'function')
{
blocks[i].ofunc = linkobj.onclick;
blocks[i].onclick = vB_Popup_Events.prototype.menuoption_onclick_function;
remove_link = true;
}
else if (typeof blocks[i].onclick == 'function')
{
blocks[i].ofunc = blocks[i].onclick;
blocks[i].onclick = vB_Popup_Events.prototype.menuoption_onclick_function;
remove_link = true;
}
else
{
blocks[i].href = linkobj.href;
blocks[i].onclick = vB_Popup_Events.prototype.menuoption_onclick_link;
}
if (remove_link)
{
var newlink = document.createElement('a');
newlink.innerHTML = linkobj.innerHTML;
newlink.href = '#';
newlink.onclick = function(e) { e = e ? e : window.event; e.returnValue = false; return false; };
blocks[i].insertBefore(newlink, linkobj);
blocks[i].removeChild(linkobj);
}
}
else if (typeof blocks[i].onclick == 'function')
{
blocks[i].ofunc = blocks[i].onclick;
blocks[i].onclick = vB_Popup_Events.prototype.menuoption_onclick_function;
}
}
}
}
}
};
/**
* Show the menu
*
* @param object The control object calling the menu
* @param boolean Use slide (false) or open instantly? (true)
*/
vB_Popup_Menu.prototype.show = function(obj, instant)
{
if (!vBmenu.active)
{
return false;
}
else if (!this.menuobj)
{
this.init_menu();
}
if (!this.menuobj || vBmenu.activemenu == this.controlkey)
{
return false;
}
console.log("vBmenu :: Show '%s'", this.controlkey);
if (vBmenu.activemenu != null && vBmenu.activemenu != this.controlkey)
{
vBmenu.menus[vBmenu.activemenu].hide();
}
vBmenu.activemenu = this.controlkey;
this.menuobj.style.display = '';
if (this.slide_open)
{
this.menuobj.style.clip = 'rect(auto, 0px, 0px, auto)';
}
this.set_menu_position(obj);
if (!instant && this.slide_open)
{
this.intervalX = Math.ceil(this.menuobj.offsetWidth / this.open_steps);
this.intervalY = Math.ceil(this.menuobj.offsetHeight / this.open_steps);
this.slide((this.direction == 'left' ? 0 : this.menuobj.offsetWidth), 0, 0);
}
else if (this.menuobj.style.clip && this.slide_open)
{
this.menuobj.style.clip = 'rect(auto, auto, auto, auto)';
}
// deal with IE putting <select> elements on top of everything
this.handle_overlaps(true);
if (this.controlobj.editorid)
{
this.controlobj.state = true;
//this.controlobj.editor.menu_context(this.controlobj, 'mousedown');
vB_Editor[this.controlobj.editorid].menu_context(this.controlobj, 'mousedown');
}
vBulletin.events["vBmenuShow_" + this.controlkey].fire(this.controlkey);
vBulletin.events.vBmenuShow.fire(this.controlkey);
};
/**
* Position the menu relative to a reference element
*
* @param object Reference HTML element
*/
vB_Popup_Menu.prototype.set_menu_position = function(obj)
{
this.pos = this.fetch_offset(obj);
this.leftpx = this.pos['left'];
this.toppx = this.pos['top'] + obj.offsetHeight;
if ((this.leftpx + this.menuobj.offsetWidth) >= document.body.clientWidth && (this.leftpx + obj.offsetWidth - this.menuobj.offsetWidth) > 0)
{
this.leftpx = this.leftpx + obj.offsetWidth - this.menuobj.offsetWidth;
this.direction = 'right';
}
else
{
this.direction = 'left'
}
// move the pagenav menu to the calling object, so it appears to be styled like where it's displayed
if (this.controlkey.match(/^pagenav\.\d+$/))
{
obj.appendChild(this.menuobj);
}
this.menuobj.style.left = this.leftpx + 'px';
this.menuobj.style.top = this.toppx + 'px';
};
/**
* Hide the menu
*/
vB_Popup_Menu.prototype.hide = function(e)
{
if (e && e.button && e.button != 1)
{
// get around some context menu issues etc.
return true;
}
console.log("vBmenu :: Hide '%s'", this.controlkey);
this.stop_slide();
this.menuobj.style.display = 'none';
this.handle_overlaps(false);
if (this.controlobj.editorid)
{
this.controlobj.state = false;
vB_Editor[this.controlobj.editorid].menu_context(this.controlobj, 'mouseout');
}
vBmenu.activemenu = null;
vBulletin.events["vBmenuHide_" + this.controlkey].fire(this.controlkey);
vBulletin.events.vBmenuHide.fire(this.controlkey);
};
/**
* Hover behaviour for control object
*/
vB_Popup_Menu.prototype.hover = function(obj)
{
if (vBmenu.activemenu != null)
{
if (vBmenu.menus[vBmenu.activemenu].controlkey != this.id)
{
this.show(obj, true);
}
}
};
/**
* Slides menu open
*
* @param integer Clip X
* @param integer Clip Y
* @param integer Opacity (0-100)
*/
vB_Popup_Menu.prototype.slide = function(clipX, clipY, opacity)
{
if (this.direction == 'left' && (clipX < this.menuobj.offsetWidth || clipY < this.menuobj.offsetHeight))
{
clipX += this.intervalX;
clipY += this.intervalY;
this.menuobj.style.clip = "rect(auto, " + clipX + "px, " + clipY + "px, auto)";
this.slidetimer = setTimeout("vBmenu.menus[vBmenu.activemenu].slide(" + clipX + ", " + clipY + ", " + opacity + ");", 0);
}
else if (this.direction == 'right' && (clipX > 0 || clipY < this.menuobj.offsetHeight))
{
clipX -= this.intervalX;
clipY += this.intervalY;
this.menuobj.style.clip = "rect(auto, " + this.menuobj.offsetWidth + "px, " + clipY + "px, " + clipX + "px)";
this.slidetimer = setTimeout("vBmenu.menus[vBmenu.activemenu].slide(" + clipX + ", " + clipY + ", " + opacity + ");", 0);
}
else
{
this.stop_slide();
}
};
/**
* Abort menu slider
*/
vB_Popup_Menu.prototype.stop_slide = function()
{
clearTimeout(this.slidetimer);
this.menuobj.style.clip = 'rect(auto, auto, auto, auto)';
};
/**
* Fetch offset of an object
*
* @param object The object to be measured
*
* @return array The measured offsets left/top
*/
vB_Popup_Menu.prototype.fetch_offset = function(obj)
{
if (obj.getBoundingClientRect)
{
// better, more accurate function for IE
var rect = obj.getBoundingClientRect();
var scrollTop = Math.max(document.documentElement.scrollTop, document.body.scrollTop);
var scrollLeft = Math.max(document.documentElement.scrollLeft, document.body.scrollLeft);
if (document.documentElement.dir == 'rtl')
{
// IE returns a positive scrollLeft, but we need a negative value to actually do proper calculations.
// This actually flips the scolloing to be relative to the distance scrolled from the default.
scrollLeft = scrollLeft + document.documentElement.clientWidth - document.documentElement.scrollWidth;
}
return { 'left' : rect.left + scrollLeft, 'top' : rect.top + scrollTop };
}
var left_offset = obj.offsetLeft;
var top_offset = obj.offsetTop;
while ((obj = obj.offsetParent) != null)
{
left_offset += obj.offsetLeft;
top_offset += obj.offsetTop;
}
return { 'left' : left_offset, 'top' : top_offset };
};
/**
* Detect an overlap of an object and a menu
*
* @param object Object to be tested for overlap
* @param array Array of dimensions for menu object
*
* @return boolean True if overlap
*/
vB_Popup_Menu.prototype.overlaps = function(obj, m)
{
var s = new Array();
var pos = this.fetch_offset(obj);
s['L'] = pos['left'];
s['T'] = pos['top'];
s['R'] = s['L'] + obj.offsetWidth;
s['B'] = s['T'] + obj.offsetHeight;
if (s['L'] > m['R'] || s['R'] < m['L'] || s['T'] > m['B'] || s['B'] < m['T'])
{
return false;
}
return true;
};
/**
* Handle IE overlapping <select> elements
*
* @param boolean Hide (true) or show (false) overlapping <select> elements
*/
vB_Popup_Menu.prototype.handle_overlaps = function(dohide)
{
if (is_ie && !is_ie7)
{
var selects = fetch_tags(document, 'select');
var i;
if (dohide)
{
var menuarea = new Array(); menuarea = {
'L' : this.leftpx,
'R' : this.leftpx + this.menuobj.offsetWidth,
'T' : this.toppx,
'B' : this.toppx + this.menuobj.offsetHeight
};
for (i = 0; i < selects.length; i++)
{
if (this.overlaps(selects[i], menuarea))
{
var hide = true;
var s = selects[i];
while (s = s.parentNode)
{
if (s.className == 'vbmenu_popup')
{
hide = false;
break;
}
}
if (hide)
{
selects[i].style.visibility = 'hidden';
vBmenu.hidden_selects.push(i);
}
}
}
}
else
{
while (true)
{
i = vBmenu.hidden_selects.pop();
if (typeof i == 'undefined' || i == null)
{
break;
}
else
{
selects[i].style.visibility = 'visible';
}
}
}
}
};
// #############################################################################
// Menu event handler functions
/**
* Class containing menu popup event handlers
*/
function vB_Popup_Events()
{
};
/**
* Handles control object click events
*/
vB_Popup_Events.prototype.controlobj_onclick = function(e)
{
if (typeof do_an_e == 'function')
{
do_an_e(e);
if (vBmenu.activemenu == null || vBmenu.menus[vBmenu.activemenu].controlkey != this.id)
{
vBmenu.menus[this.id].show(this);
}
else
{
vBmenu.menus[this.id].hide();
}
}
};
/**
* Handles control object mouseover events
*/
vB_Popup_Events.prototype.controlobj_onmouseover = function(e)
{
if (typeof do_an_e == 'function')
{
do_an_e(e);
vBmenu.menus[this.id].hover(this);
}
};
/**
* Handles menu option click events for options with onclick events
*/
vB_Popup_Events.prototype.menuoption_onclick_function = function(e)
{
this.ofunc(e);
vBmenu.menus[this.controlkey].hide();
};
/**
* Handles menu option click events for options containing links
*/
vB_Popup_Events.prototype.menuoption_onclick_link = function(e)
{
e = e ? e : window.event;
if (e.shiftKey || (this.target != null && this.target != '' && this.target.toLowerCase() != '_self'))
{
if (this.target != null && this.target.charAt(0) != '_')
{
window.open(this.href, this.target);
}
else
{
window.open(this.href);
}
}
else
{
window.location = this.href;
}
// Safari has "issues" with resetting what was clicked on, super minor and I dont care
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
if (e.preventDefault) e.preventDefault();
vBmenu.menus[this.controlkey].hide();
return false;
};
/**
* Handles menu option mouseover events
*/
vB_Popup_Events.prototype.menuoption_onmouseover = function(e)
{
this.className = 'vbmenu_hilite' + (this.islink ? ' vbmenu_hilite_alink' : '');
this.style.cursor = pointer_cursor;
};
/**
* Handles menu option mouseout events
*/
vB_Popup_Events.prototype.menuoption_onmouseout = function(e)
{
this.className = 'vbmenu_option' + (this.islink ? ' vbmenu_option_alink' : '');
this.style.cursor = 'default';
};
/*======================================================================*\
|| ####################################################################
|| #
|| # CVS: $RCSfile$ - $Revision: 25131 $
|| ####################################################################
\*======================================================================*/
Last edited by Scr1pt : 01-09-2008 at 12:32 AM .
Yandex Bot
01-09-2008, 12:32 AM
Kernel panic
Join Date: Aug 2007
Location: Екатеринбург
Posts: 2,536
Версия vB: 3.8.x
Пол:
Reputation:
Гуру 1920
Репутация в разделе: 793
Quote:
Originally Posted by
Scr1pt
Но т.к. я не шарю в яве, то спрашиваю как это сделать?
Не яву копать надо. В соотв. шаблоне надо копать - там код менюшки прописан...
01-09-2008, 02:14 PM
Продвинутый
Join Date: Oct 2007
Location: /php5
Posts: 156
Версия vB: 1.x.x
Reputation:
Опытный 87
Репутация в разделе: 63
Нет. Картинка именно в яваскрипте.
Ни в поиске по шаблонам ее нет ни в переменных.
А таких одинаковых менюшек в булке дохера.
Если я не прав, то покажи в каком шаблоне и где искать.
01-09-2008, 02:16 PM
Продвинутый
Join Date: Sep 2007
Posts: 345
Reputation:
Опытный 84
Репутация в разделе: 60
Картинка - стрелочка?
тогда она берёться из php а не из JS
Поищи по форуму, обсуждалось уже
01-09-2008, 03:00 PM
Kernel panic
Join Date: Aug 2007
Location: Екатеринбург
Posts: 2,536
Версия vB: 3.8.x
Пол:
Reputation:
Гуру 1920
Репутация в разделе: 793
Хм, как это не странно, но картинка действительно в .js скрипте:
HTML Code:
img.src = IMGDIR_MISC + '/menu_open.gif';
Всегда думал, что она не входит в класс vbmenu_control...)))
01-09-2008, 04:13 PM
Продвинутый
Join Date: Oct 2007
Location: /php5
Posts: 156
Версия vB: 1.x.x
Reputation:
Опытный 87
Репутация в разделе: 63
Да вопрос не в том где находится!
Я же написал что она в яваскрипте и привел код зачем гадать непонимаю..
Вот в этом кусочке:
Code:
if (!noimage && !(is_mac && is_ie))
{
var space = document.createTextNode(' ');
this.controlobj.appendChild(space);
var img = document.createElement('img');
img.src = IMGDIR_MISC + '/menu_open.gif ';
img.border = 0;
img.title = '';
img.alt = '';
this.controlobj.appendChild(img);
}
Вопрос в том как это изменить и заменить картинку текстовым символом?
И сразу еще вопрос:
Есть картинки-ссылки для сортировки тем:
sortdesc.gif
sortasc.gif
Так вот мне опять же надо заменить эти картинки текстом.
В коде шаблона они задаются переменной
$sortarrow[lastpost]
Где мне найти эту переменную и изменить ее значение?
Last edited by Scr1pt : 01-09-2008 at 04:28 PM .
Reason: Добавлено сообщение
01-09-2008, 09:36 PM
Эксперт
Join Date: Mar 2006
Location: Улыбаемся и машем, машем и улыбаемся... :)ь
Награды в конкурсах:
Posts: 2,939
Версия vB: 1.x.x
Reputation:
Professional 849
Репутация в разделе: 503
Quote:
Originally Posted by
Scr1pt
HTML Code:
if (!noimage && !(is_mac && is_ie)) { var space = document.createTextNode(' '); this.controlobj.appendChild(space); var img = document.createElement('img'); img.src = IMGDIR_MISC + '/menu_open.gif'; img.border = 0; img.title = ''; img.alt = ''; this.controlobj.appendChild(img); }
так поэксперементируй с этим
убери пути на имейдж и попробуй прописать текст
Добавлено через 45 секунд
Quote:
Originally Posted by
Scr1pt
Установка, настройка, раскрутка форумов\сайтов...
Все за ваши деньги
Ася в профиле.
а вот это уже пугает...
Last edited by Мик : 01-09-2008 at 09:38 PM .
Reason: Добавлено сообщение
01-09-2008, 10:01 PM
Kernel panic
Join Date: Aug 2007
Location: Екатеринбург
Posts: 2,536
Версия vB: 3.8.x
Пол:
Reputation:
Гуру 1920
Репутация в разделе: 793
Quote:
Originally Posted by
Scr1pt
Вопрос в том как это изменить и заменить картинку текстовым символом?
HTML Code:
if (!noimage && !(is_mac && is_ie))
{
var space = document.createTextNode(' ');
this.controlobj.appendChild(space);
var symbol = document.createTextNode('Твой символ');
this.controlobj.appendChild(symbol);
}
Quote:
Originally Posted by
Scr1pt
В коде шаблона они задаются переменной $sortarrow[lastpost]
Где мне найти эту переменную и изменить ее значение?
Это шаблон forumdisplay_sortarrow...
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
All times are GMT +4. The time now is 05:12 AM .