Техническая поддержка SpyBB

Объявление

Ответы на часто задаваемые вопросы  |  FAQ по администрированию форума  |  FAQ по дизайну форума в CSS  |  Абсолютный помощник по дизайну  |  Навигатор по форуму

Перед регистрацией прочтите правила форума
При поиске ответа на заданный вопрос рекомендуем пользоваться «Поиском».
В случае проблемы с форумом, обязательно указывайте его адрес, иначе мы не сможем Вам помочь!

● 24 марта 2012г. - Закрепление первого сообщения
● 23 марта 2012г.: Изменения в форме ответа - Добавлен стандартный спойлер. Доработан функционал кнопок

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.



Коды

Сообщений 1 страница 2 из 2

1

Составили коды, а они работают лишь от части. В редакторе же все выглядело иначе

Сайт: http://olimpiusrpg.spybb.ru/
Вот код:

Код:
#pun_wrap #pun #pun-index #pun-main .category h2 
#pun_wrap #pun #pun-index #pun-main .category h2 {background-image: url(http://s002.radikal.ru/i197/1002/52/265fcac45157.jpg); background-repeat: repeat; }
#pun_wrap #pun #pun-index #pun-main .category h2 span {font-size: 20; font-family: Arial; color: black; font-weight: bold; }
#pun_wrap #pun #pun-index .section h2 span {font-family: Arial; color: black; font-weight: bold; }
#pun_wrap #pun #pun-index .section h2 span {background-image: url("http://s002.radikal.ru/i197/1002/52/265fcac45157.jpg"); }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tcl {background-image: url("http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg"); background-repeat: repeat; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tc2 {background-image: url("http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg"); background-repeat: repeat; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tc3 {background-image: url("http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg"); background-repeat: repeat; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tcr {background-image: url("http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg"); background-repeat: repeat; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tcl {font-size: 22; font-family: Arial; color: black; font-weight: bold; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tc2 {font-size: 22; font-family: Arial; color: black; font-weight: bold; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tc3 {font-size: 22; font-family: Arial; color: black; font-weight: bold; }
#pun_wrap #pun #pun-index #pun-main .category .container table thead tr .tcr {font-size: 22; font-family: Arial; color: black; font-weight: bold; }

0

2

Семиэль написал(а):

Составили коды, а они работают лишь от части. В редакторе же все выглядело иначе

Пробуйте заменить содержимое HTML верх на это

Код:
<style>
body {
background:url(http://i079.radikal.ru/0909/6e/62052bab2d7a.jpg) repeat fixed;
}

#pun {
background:url(http://i009.radikal.ru/0909/fa/a603c1bf7fc4.jpg) fixed;
}
</style>

<style>
.punbb .main .container,.punbb td.tc3,.punbb .section .container,.punbb .section .formal .container,.punbb .formal fieldset,#viewprofile li strong,#viewprofile li div,#setmods dd,.punbb-admin #pun-admain .adcontainer,.punbb .info-box,.punbb #pun-main .info-box .legend,#pun-stats.section .statscon .container,#pun-crumbs2 p.container,#pun-about p.container {
background:url(http://s002.radikal.ru/i197/1002/52/265fcac45157.jpg);
}

#pun-stats h2,.punbb .main h1,.punbb .main h2,#pun-debug h2 {
background:url(http://s002.radikal.ru/i197/1002/52/265fcac45157.jpg) repeat-x top;
}

.punbb th {
background:url(http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg) repeat;
font-size:12px;
font-family:Arial;
color:#000;
font-weight:bold;
}

#pun-main .category h2 span {
font-size:20px;
font-family:Arial;
color:#000;
font-weight:bold;
}

.punbb td.tcl,.punbb td.tc2,.punbb td.tc3,.punbb td.tcr {
background:url(http://s006.radikal.ru/i215/1002/fc/7c9de2e9553d.jpg) repeat;
font-size:22px;
font-family:Arial;
color:#000;
font-weight:bold;
}
</style>

0