|
|
Отпадный скрипт // каку нас на сайте Code <head> <title>Бегущая строка в поле формы со сменой сообщений.</title> </head> <body> <script language="JavaScript"> <!-- // Установка скорости сообщения (пауза в миллисекундах между символами) var speed = 100 // уменьшите значение для увеличения скорости // установите паузу между сообщениями var pause = 1000 // increase value to increase pause // установите начальное значение var timerID = null var bannerRunning = false var ar = new Array() // ввод строк ar[0] = "Добро пожаловать" ar[1] = "сдесь ваше сообщение" ar[2] = "и тут тоже ваше сообщение" // установите номер сообщения, которое появится первым var currentMessage = 0 var offset = 0 function stopBanner() { if (bannerRunning) clearTimeout(timerID) bannerRunning = false } function startBanner() { stopBanner() showBanner() } function showBanner() { var text = ar[currentMessage] if (offset < text.length) { if (text.charAt(offset) == " ") offset++ var partialMessage = text.substring(0, offset + 1) document.bannerForm.bannerField.value = partialMessage offset++ // IE sometimes has trouble with "++offset" timerID = setTimeout("showBanner()", speed) bannerRunning = true } else { offset = 0 currentMessage++ if (currentMessage == ar.length) currentMessage = 0 timerID = setTimeout("showBanner()", pause) bannerRunning = true } } // --> </script> <form name="bannerForm">
<input type="text" size="50" name="bannerField" style="font-family: sans-serif; font-size: 8pt; background-color:#006600; color: rgb(0,256,0); text-align: center"></p> </form> <script language="JavaScript"> startBanner() </script> </body> </html> |
|
|
Данный скрипт не позволяет пользователю отправлять больше одного сообщения за 30 секунд (тайм-аут можно изменить). Установка: Все коды нужно ставить в общий вид форума. Сначала подключим функции для работы с Cookies, поставив этот код в head: Code <?if($PAGE_ID$='threadpage')?> <script type="text/javascript"> function getCookie(a){var b=document.cookie.match(new RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g,"\\$1")+"=([^;]*)"));return b?decodeURIComponent(b[1]):undefined}function setCookie(b,f,c){c=c||{};var i=c.expires;if(typeof i=="number"&&i){var h=new Date();h.setTime(h.getTime()+i*1000);i=c.expires=h}if(i&&i.toUTCString){c.expires=i.toUTCString()}f=encodeURIComponent(f);var a=b+"="+f;for(var e in c){a+="; "+e;var g=c[e];if(g!==true){a+="="+g}}document.cookie=a}function deleteCookie(a){setCookie(a,null,{expires:-1})}; </script> <?endif?> Затем — сам скрипт, после $BODY$: Code <?if($PAGE_ID$='threadpage')?> <script type="text/javascript"> /* * uForum.AntiSpam by $USERNAME$ aka. exec * 15:23 04.04.2010 ~ KRSK */
var bts = document.getElementById('frF16'); bts.onclick = 'setCookie("FrDs", "ddd", {expires: 30})'; if (!!getCookie("FrDs")) { bts.disabled = true, bts.value = 'Включена защита от спама', bts.style.width = '200px', btr = document.getElementById('frF17'), er = document.createElement('div'), er.align = 'center', er.innerHTML = 'Минимальный интервал для отправки сообщений — 30 секунд! Подождите и обновите страницу.', btr.parentNode.insertBefore(er, btr.nextSibling); } </script> <?endif?>
bts.onclick = 'setCookie("FrDs", "ddd", {expires: 30})'; — здесь можно установить время тайм-аута (в секундах). С вами был $USERNAME$ |
|
|
Скрипт изменяет позволяет изменять цвет ника на форуме и в личном профиле. Для начала активируем MSN ФОРМА РЕГИСТРАЦИИ ПОЛЬЗОВАТЕЛЕЙ: Code <?if($MSN_FL$)?> <tr id="siM12"><td class="manTd1" id="siM13">$MSN_SIGN$</td><td class="manTd2" id="siM14">$MSN_FL$</td></tr><tr><td height="10" class="manTdSep" colspan="2"><hr class="manHr" /></td></tr> <?endif?> И заменяем на: Code <?if($MSN_FL$)?> <tr id="siM12"><td class="manTd1" id="siM13">Цвет вашего ника:</td> <td class="manTd2" id="siM14"> <select size="1" id="msncolor" name="msn" onChange="colorpre(this.value);"> <option style='color:gray' value="1">Стандартный (Серый)</option> <option style='color:red' value="2">Красный</option> <option style='color:violet' value="3">Фиолетовый</option> <option style='color:purple' value="4">Сиреневый</option> <option style='color:blue' value="5">Синий</option> <option style='color:blue' value="6">Голубой</option> <option style='color:green' value="7">Зеленый</option> <option style='color:yellow' value="8">Желтый</option> <option style='color:orange' value="9">Оранжевый</option> <option style='color:brown' value="10">Коричневый</option> </select> <div id="msncolorpre"></div> <?endif?> Тоже самое в ФОРМЕ РЕДАКТИРОВАНИЯ ЛИЧНОЙ ИНФОРМАЦИИ. Терь открываем вид материалов ФОРУМА и ищем во второй строке: Заменяем на: Code <?if($_MSN$<1)?><FONT color="#9A9B9F">$_USERNAME$</FONT><?else?><?if($_MSN$="1")?><FONT color="#9A9B9F">$_USERNAME$</FONT><?endif?><?if($_MSN$="2")?><FONT color="#FF000C">$_USERNAME$</FONT><?endif?><?if($_MSN$="3")?><FONT color="#E23BB9">$_USERNAME$</FONT><?endif?><?if($_MSN$="4")?><FONT color="#982CC5">$_USERNAME$</FONT><?endif?><?if($_MSN$="5")?><FONT color="#4357E8">$_USERNAME$</FONT><?endif?><?if($_MSN$="6")?><FONT color="#76B3D9">$_USERNAME$</FONT><?endif?><?if($_MSN$="7")?><FONT color="#4AAA38">$_USERNAME$</FONT><?endif?><?if($_MSN$="8")?><FONT color="#DBE842">$_USERNAME$</FONT><?endif?><?if($_MSN$="9")?><FONT color="#F16534">$_USERNAME$</FONT><?endif?><?if($_MSN$="10")?><FONT color="#A64D2E">$_USERNAME$</FONT><?endif?><?endif?> Потом ищем: Code <?if($_MSN$)?> <div id="block15" class="udtb"><div class="udtlb">MSN:</div> $_MSN$</div> <?endif?> Можно удалить или заменить на это: Code <?if($_MSN$)?> <div id="block15" class="udtb"><div class="udtlb">Цвет вашего ника: </div> <?if($_MSN$<1)?><FONT color="#9A9B9F">Стандартный (Серый)</FONT><?else?><?if($_MSN$="1")?><FONT color="#9A9B9F">Стандартный (Серый)</FONT><?endif?><?if($_MSN$="2")?><FONT color="#FF000C">Красный</FONT><?endif?><?if($_MSN$="3")?><FONT color="#E23BB9">Фиолетовый</FONT><?endif?><?if($_MSN$="4")?><FONT color="#982CC5">Сиреневый</FONT><?endif?><?if($_MSN$="5")?><FONT color="#4357E8">Синий</FONT><?endif?><?if($_MSN$="6")?><FONT color="#76B3D9">Голубой</FONT><?endif?><?if($_MSN$="7")?><FONT color="#4AAA38">Зеленый</FONT><?endif?><?if($_MSN$="8")?><FONT color="#DBE842">Желтый</FONT><?endif?><?if($_MSN$="9")?><FONT color="#F16534">Оранжевый</FONT><?endif?><?if($_MSN$="10")?><FONT color="#A64D2E">Коричневый</FONT><?endif?><?endif?></div> <?endif?> И там в замене стандартных надписей замени нужное. |
|
|
Создаем блок и вставляем туда этот код: Code <DIV><TABLE border="0" cellspacing="0" cellpadding="0" align="center"><TBODY><TR height="40"><TD width="40"><A target="_blank" href="http://imgcdn.pandora.tv/pan_img/KMP/Download/Release/The_KMPlayer_1435.exe"><IMG src="http://dfile.net/logo/Soft_block/kmp.ico" border="0" alt="" height="32" width="32"></A></TD><TD width="40"><A target="_blank" href="http://download.nullsoft.com/winamp/client/winamp5572_full_emusic-7plus_ru-ru.exe"><IMG src="http://dfile.net/logo/Soft_block/winamp.ico" border="0" alt="" height="32" width="32" title="Winamp Full"></A></TD><TD width="40"><A target="_blank" href='http://download.yandex.ru/yandex-pack/gom_player/gomplayerensetup21204830.exe"'><IMG src="http://dfile.net/logo/Soft_block/gom.ico" border="0" alt="" height="32" width="32" title="GOM Player"></A></TD><TD width="40"><A target="_blank" href="http://www.brothersoft.com/d.php?soft_id=64106&url=http%3A%2F%2Ffiles.brothersoft.com%2Fmp3_audio%2Fplayers%2Faimp_2.61.570.zip"><IMG src="http://dfile.net/logo/Soft_block/aimp.ico" border="0" alt="" height="32" width="32" title="Aimp"></A></TD></TR><TR height="40"><TD width="40"><A target="_blank" href="http://download.microsoft.com/download/C/A/B/CAB13EF7-5652-4CC9-8ECB-64F857E5D065/wmp11-windowsxp-x86-ru-ru.exe"><IMG src="http://dfile.net/logo/Soft_block/wmp.ico" border="0" alt="" height="32" width="32" title="Windows Media Player"></A></TD><TD width="40"><A target="_blank" href='http://89.149.242.221/download/VLC-1-0-5-Rus-2010.exe"'><IMG src="http://dfile.net/logo/Soft_block/vlc.ico" border="0" alt="" height="32" width="32" title="VLC Media Player"></A></TD><TD width="40"><A target="_blank" href="http://free-en.softonic.com/free/16000/16261/bsplayer253.1034_clip.exe?AWSAccessKeyId=0HXVA1YMG3HX1XDSGT02&Expires=1276543045&Signature=bSS48LqWe7%2BfRUEuHZfzDzS%2FKbY%3D&file=/bsplayer253.1034_clip.exe"><IMG src="http://dfile.net/logo/Soft_block/bs.ico" border="0" alt="" height="32" width="32" title="BSplayer"></A></TD><TD width="40"><A target="_blank" href="http://www.light-alloy.ru/archive/LA44.rar"><IMG src="http://dfile.net/logo/Soft_block/ll.ico" border="0" alt="" height="32" width="32" title="Light Alloy"></A></TD></TR><TR height="40"><TD width="40"><A target="_blank" href="http://mozilla3.snt.utwente.nl//firefox/releases/3.6.3/win32/ru/Firefox%20Setup%203.6.3.exe"><IMG src="http://dfile.net/logo/Soft_block/firefox.ico" border="0" alt="" height="32" width="32" title="Mozilla Firefox 3.6.2"></A></TD><TD width="40"><A target="_blank" href="http://get7.opera.com/pub/opera/win/1053/ru/Opera_1053_int_Setup.exe"><IMG src="http://dfile.net/logo/Soft_block/opera.ico" border="0" alt="" height="32" width="32" title="Opera 10"></A></TD><TD width="40"><A target="_blank" href="http://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B3F33C80D-80B9-F019-AD9A-1597F30BC2F1%7D%26lang%3Dru%26browser%3D0%26usagesta ts%3D1%26appname%3DGoogle%2520Chrome%26needsadmin%3Dfalse%26brand%3DCHMB%26installdataindex%3Dnosearch/update2/installers/ChromeSetup.exe"><IMG src="http://dfile.net/logo/Soft_block/grome.ico" border="0" alt="" height="32" width="32" title="Google Chrome"></A></TD><TD width="40"><A target="_blank" href="http://download.yandex.ru/ie/xp/IE8-Setup-Full-32bit.exe"><IMG src="http://dfile.net/logo/Soft_block/ie.ico" border="0" alt="" height="32" width="32" title="Internet Explorer 8"></A></TD></TR><TR height="40"><TD width="40"><A target="_blank" href="http://download.qip.ru/9036_nosms/qipinfium9036.exe"><IMG src="http://dfile.net/logo/Soft_block/qipinf.ico" border="0" alt="" height="32" width="32" title="QIP infium"></A></TD><TD width="40"><A target="_blank" href="http://www.faststonesoft.net/DN/FSCaptureSetup65.exe"><IMG src="http://mallow.wakcdn.com/avatars/000/002/265/normal.png" border="0" alt="" height="32" width="32" title="Fscapture"></A></TD><TD width="40"><A target="_blank" href="http://http.icq.com.edgesuite.net/pub/ICQ7/install_rambler_icq7.exe"><IMG src="http://dfile.net/logo/Soft_block/icq.ico" border="0" alt="" height="32" width="32"></A></TD><TD width="40"><A target="_blank" href="http://files.miranda-im.org/builds/miranda-v090a1w.7z"><script language="JavaScript"src="http://xdiz.ucoz.net/grafl.js"></script><IMG src="http://dfile.net/logo/Soft_block/miranda.ico" border="0" alt="" height="32" width="32" title="Miranda"></A></TD></TR><TR height="40"><TD width="40"><A target="_blank" href="http://www.esetnod32.ru/.distributive/4.2/eav_trial32_rus.exe"><IMG src="http://dfile.net/logo/Soft_block/nod32.ico" border="0" alt="" height="32" width="32" title="ESET NOD32"></A></TD><TD width="40"><A target="_blank" href="http://downloads.kaspersky-labs.com/trial/registered/8NGILSWTCHAPVSJ1NTX8/kav9.0.0.736ru.exe"><IMG src="http://dfile.net/logo/Soft_block/kaspersky.png" border="0" alt="" height="32" width="32" title="Kaspersky"></A></TD><TD width="40"><A target="_blank" href="ftp://ftp.drweb.com/pub/drweb/windows/drweb-600-win-space-x86.exe"><IMG src="http://dfile.net/logo/Soft_block/drweb.ico" border="0" alt="" height="32" width="32" title="Dr.Web"></A></TD><TD width="40"><A target="_blank" href="http://dld.softportal.com/b8/6/3/014fb815109adb769fcab3801fb4bac8/setup_av_free.exe"><IMG src="http://dfile.net/logo/Soft_block/avast.ico" border="0" alt="" height="32" width="32" title="Avast!"></A></TD></TR><TR><TD colspan="2" align="left"><TR height="40"><TD width="40"><A target="_blank" href="http://www.rarlab.com/rar/wrar393ru.exe"><IMG src="http://dfile.net/logo/Soft_block/winrar.ico" border="0" alt="" height="32" width="32" title="Winrar"></A></TD><TD width="40"><A target="_blank" href="http://citylan.dl.sourceforge.net/project/sevenzip/7-Zip/9.14/7z914.exe"><IMG src="http://dfile.net/logo/Soft_block/7z.ico" border="0" alt="" height="32" width="32" title="7-Zip"></A></TD><TD width="40"><A target="_blank" href="http://myccleaner.ru/dl/CCleanerPortable-ru.zip"><IMG src="http://dfile.net/logo/Soft_block/ccliner.ico" border="0" alt="" height="32" width="32" title="CCleaner"></A></TD><TD width="40"><A target="_blank" href="http://www.dotpdn.com/files/Paint.NET.3.5.5.Install.zip"><IMG src="http://www.instantapp.net/icons/PaintNET.png" border="0" alt="" height="32" width="32" title="PaintNet"></A></TD></TR><TR><TD colspan="2" align="left"><TD colspan="2" align="left"><TR height="40"><TD width="40"><A target="_blank" href="http://www.teamviewer.com/download/TeamViewer_Setup.exe"><IMG src="http://www.mitcon.de/sections/download/workspaces/mitcon4502/grafiken/teamviewer-logo4864/downloadFile/file/team_viewer_logo.jpg" border="0" alt="" height="32" width="32" title="Teamviewer"></A></TD><TD width="40"><A target="_blank" href="http://filezilla.ru/download/FileZilla_3.3.3_win32-setup.exe"><IMG src="http://dfile.net/logo/Soft_block/file.ico" border="0" alt="" height="32" width="32" title="FileZilla"></A></TD><TD width="40"><A target="_blank" href="http://www.utorrent-ru.com/download/filez/2.0/utorrent-2.0.2.exe"><IMG src="http://dfile.net/logo/Soft_block/torrent.ico" border="0" alt="" height="32" width="32" title="Utorrent"></A></TD><TD width="40"><A target="_blank" href="http://downloadmaster.ru/dm/download/dmaster.exe"><IMG src="http://dfile.net/logo/Soft_block/dm.ico" border="0" alt="" height="32" width="32" title="Download Master"></A></TD></TR><TR><TD width="40"><A target="_blank" href="http://download.skype.com/partner/trackable/259/SkypeSetup.exe"><IMG src="http://dfile.net/logo/Soft_block/skype.ico" border="0" alt="" height="32" width="32" title="Skype 4.1 RUS"></A></TD><TD width="40"><A target="_blank" href="http://allbat.info/download/thebat/release/4xx/thebat_4.2.36_release/thebat_home_4-2-36-4.msi"><IMG src="http://dfile.net/logo/Soft_block/the-bat.png" border="0" alt="" height="32" width="32" title="The Bat!"></A></TD><TD width="40"><A target="_blank" href="http://dl22.the-file.ru/uploads/links/10/Total_Commander_7.02_Rus_Full_Multilanguage___kryak-18646872.exe"><IMG src="http://dfile.net/logo/Soft_block/totalcom.ico" border="0" alt="" height="32" width="32" title="Total Commander"></A></TD><TD width="40"><A target="_blank" href="http://dld.softportal.com/b8/5/7/6533a4f1fa0958a2ad80e00b9e73b3ec/mirc635.exe"><IMG src="http://dfile.net/logo/Soft_block/mirc.ico" border="0" alt="" height="32" width="32" title="Mirc"></A></TD></TR><TR height="40"><TD width="40"><A target="_blank" href="http://www.auslogics.com/ru/downloads/boost-speed/5/boost-speed-setup.exe"><IMG src="http://xerni.net.ru/tutto/blok-soft/ABS.png" border="0" alt="" height="32" width="32" title="BoostSpeed"></A></TD><TD width="40"><A target="_blank" href="http://www.artmoney.ru/artmoneypro733rus.exe"><IMG src="http://xerni.net.ru/tutto/blok-soft/AM.png" border="0" alt="" height="32" width="
...
Читать дальше »
|
|
|
Скрипт статистика форума Для тех кто не знает как поставить у себя на форуме таблицу с информерами. Таблица: (после $BODY$ в шаблоне форума) Code <table border="0" width="100%" bgcolor="#FFFFFF" cellspacing="1" cellpadding="3" class="gTable"> <tr> <td class="gTableTop" colspan="5">Статистика Форума</td> </tr> <tr> <td width="25%" class="gTableSubTop">Последнии темы</td> <td width="25%" class="gTableSubTop">Читаемые темы</td> <td width="25%" class="gTableSubTop">Лучшии пользователи</td> <td width="25%" class="gTableSubTop">Новые пользователи</td> </tr> <tr> <td class="gTableBody1" style="padding:10px;">$MYINF_1$</td> <td class="gTableBody1" style="padding:10px;">$MYINF_2$</td> <td class="gTableBody1" style="padding:10px;">$MYINF_3$</td> <td class="gTableBody1" style="padding:10px;">$MYINF_4$</td> </tr> </table> Перед созданием информеров незабудте указать макс. ~21 символов. Настройка шаблона информеров. Code <table style="width:100%"> <tbody> <tr> <td style="vertical-align:top"><p align=left><a href="$THREAD_URL$">$THREAD_TITLE$</a></p></td> <td style="vertical-align:top"><p align=right>($REPLIES$)</p></td> </tr> </tbody> </table> |
|
|
Для тех кто хочет заходить в ОДНОКЛАСНИКИ через свой сайт! заходим -> Панель Управления -> Редактор страниц -> Управление страницами сайта -> Добавить страницу Потом в страницу копируем следующий HTML код: Code <IFRAME style="width: 100%; height: 1000" src="http://vkontakte.ru/" scrolling="yes" frameborder="0"></IFRAME> |
|
|
смотрите- как у нас на сайте , на форуме Форум > Вид материалов ищим это: Code <?if($AVATAR_URL$)?><img title="$USERNAME$" class="userAvatar" border="0" src="$AVATAR_URL$"><?endif?> меняем на это: Code <?if($AVATAR_URL$)?> <a href="$PROFILE_URL$"><img 0="" src="$AVATAR_URL$" title="$USERNAME$" border=""></a> <?else?> <a href="$PROFILE_URL$"><img 0="" src="http://cs-portal2.ucoz.ru/noavatar.png" title="$USERNAME$" border=""></a> <?endif?> |
|
|
вводишь любой текст и он печатается как на печатной машинке ))
Code <html> <head> <title>Печатная машинка</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> <style type="text/css"> <!-- .style1 {font-size: 12px} --> </style> <script> <!-- web-mastery.info --> var source,dest,len,now=0,delay=100,letters=1; function show_text() { source = document.getElementById("pageTextSource"); dest = document.getElementById("pageText"); len = source.innerHTML.length; show(); }
function show() { dest.innerHTML += source.innerHTML.substr(now,letters); now+=letters;
if(now<len) setTimeout("show()",delay); } </script> </head> <body bgcolor="#FAFDFF" onload="show_text();"> <p style="display:none" id="pageTextSource"> Ваш текст <p id="pageText"> </p>
</body> </html> |
|
|
1) Качаем архив с библиотекой jQuery, он есть на гугле, в коллекции библиотек, или сдесь в смотрите прикреплённый файл? Открываем файловый менеджер, нажимаем обзор, и заливаем этот скрипт к себе на сайт. 2) Затем идём в админпанель. Главная » Управление дизайном » Быстрая замена
Что заменить: на что заменить Code <head> <script src="http://$HOME_PAGE_LINK$jquery-1.2.6.min.js" type="text/javascript"></script> 3) Там же (в быстрой замене участков шаблона) пишем: заменить на это Code </title> <script type="text/javascript"> function refGraf(){ var h = location.host; var a = $("img[src*='мой сайт.com/graffiti/']"); a.css("width", "200px"); var length = a.get().length; var links = []; for(i=0; i<length; i++){ links.push(a.get(i).src); } a.wrap("<div class='graf'></div>"); $(".graf").each(function(i){ this.innerHTML = "<a target='_new' href='"+links[i]+"'>"+ this.innerHTML + "</a>"; }); } $(function(){ refGraf(); }); </script> |
|
|
Установка: 1.Качаем архив (ниже ) 2.Перебрасываем папку Images 3.Заходим в CSS и вставляем в вверху этот код Code /* CSS Document */ .rhm1{ width:780px; height:64px; margin:0 auto; background:url(images/rhm1_bg.gif) repeat-x; } .rhm1-left{ background:url(images/rhm1_l.gif) no-repeat; width:15px; height:64px; float:left; } .rhm1-right{ background:url(images/rhm1_r.gif) no-repeat; width:15px; height:64px; float:right; } .rhm1-bg{ background:url(images/rhm1_bg.gif) repeat-x; height:64px; } .rhm1-bg ul{ list-style:none; margin:0 auto; } .rhm1-bg li{ float:left; list-style:none; } .rhm1-bg li a{ float:left; display:block; color:#ffe8cc; text-decoration:none; font:12px 'Lucida Sans', sans-serif; font-weight:bold; padding:0 0 0 18px; height:64px; line-height:40px; text-align:center; cursor:pointer; } .rhm1-bg li a span{ float:left; display:block; padding:0 32px 0 18px; } .rhm1-bg li.current a{ color:#fff; background:url(images/rhm1_hover_l.gif) no-repeat left 5px; } .rhm1-bg li.current a span{ color:#fff; background:url(images/rhm1_hover_r.gif) no-repeat right 5px; } .rhm1-bg li a:hover{ color:#fff; background:url(images/rhm1_hover_l.gif) no-repeat left 5px; } .rhm1-bg li a:hover span{ color:#fff; background:url(images/rhm1_hover_r.gif) no-repeat right 5px; } 4.Заходим в Редактор страниц и вставляем куда вам нужно этот код Code <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>13 Styles Orange Gloss Menu</title> <link href="rhm1.css" rel="stylesheet" type="text/css" media="screen" /> </head> <body> <div class="rhm1"> <div class="rhm1-right"></div> <div class="rhm1-left"></div> <div class="rhm1-bg"> <ul> <li class="current"><a href="#"><span>Home</span></a></li> <li><a href="#"><span>About Us</span></a></li> <li><a href="#"><span>Services</span></a></li> <li><a href="#"><span>Products</span></a></li> <li><a href="#"><span>Contact Us</span></a></li> </ul> </div> </div> </body> </html> |
|
|
Если вы хотите поставить другой фон для новостей, или каталога файлов, или статей... неважно.. для любого модуля заходите: админ. панель -> новости сайта -> управление дизайном модуля -> вид материалов. и между: Code <table border="0" cellpadding="0" cellspacing="0" width="100%" class="eBlock"><tr><td style="padding:3px;"> и Code <div style="float:right">$MODER_PANEL$</div> ВСТАВЛЯЕМ Code <TD background=ССЫЛКА_НА_КАРТИНКУ ;="" padding-bottom:="" padding-top:="" 15px;=""> |
|