Модератор форума: Yuri_G  
Как сменить фон сайта
bandjuk
Сообщений: 6816
Репутация: 2398
Уровень замечаний:

Сообщение # 166 | 11:38:51
Quote (Andrei5756)
При смене значков Меню сайта, Наш опрос и так далее... значок не отображается.Вот например Меню сайта значок заменён в данный момент. Но вместо этого - только черный фон.
С чем это связано?

попробуй поставить нормальную картинку, а не это:


в опросе это:


по-моему разница очевидна ;)

Добавлено (05-Сен-2012, 11:38:51)
---------------------------------------------

Quote (Andrei5756)
Также подскажите пожалуйста как прописать чтобы картинка растягивалась?

именно растягивалась или повторялась?
Andrei5756
Сообщений: 27
Репутация: 0

Сообщение # 167 | 11:43:31
)) про картинку согласен. заменю на меньшего размера )

Насчет второго вопроса:
именно растягивалась. как повторяться я уже выяснил.
bandjuk
Сообщений: 6816
Репутация: 2398
Уровень замечаний:

Сообщение # 168 | 11:46:43
Andrei5756,
Quote
.имя стиля {background:#000 url(картинка) no-repeat center center fixed; -moz-background-size:cover; -o-background-size:102% auto; -webkit-background-size:102% auto; -khtml-background-size:cover; background-size:cover;}
Andrei5756
Сообщений: 27
Репутация: 0

Сообщение # 169 | 12:56:16
спасибо за помощь
попробую

Добавлено (05-Сен-2012, 12:56:16)
---------------------------------------------
растянуть картинку получилось.
подскажите пожалуйста почему у меня не работает отцентровка названия сайта?
где мне подправить?
<tr><td style="{background:#000 url('http://246division.ucoz.ru/ogon2.jpg') no-repeat center center fixed; -moz-background-size:cover; -o-background-size:102% auto; -webkit-background-size:102% auto; -khtml-background-size:cover; background-size:cover;} text-align: center;""><span style="color:#FFFFFF;font:25pt bold Verdana,Tahoma;"><!-- <logo> -->Памяти 246ой Шумской стрелковой дивизии<!-- </logo> --></span></td></tr>

bandjuk
Сообщений: 6816
Репутация: 2398
Уровень замечаний:

Сообщение # 170 | 13:00:07
Andrei5756, наверное потому, что ты не туда прописал, нужно так:
Code
<tr><td style="background:#000 url('http://246division.ucoz.ru/ogon2.jpg') no-repeat center center fixed; -moz-background-size:cover; -o-background-size:102% auto; -webkit-background-size:102% auto; -khtml-background-size:cover; background-size:cover;"><span style="text-align: center; color:#FFFFFF;font:25pt bold Verdana,Tahoma;"><!-- <logo> -->Памяти 246ой Шумской стрелковой дивизии<!-- </logo> --></span></td></tr>

{ - это пишется в ксс а не в шаблоне ;)
Сообщение отредактировал bandjuk - Среда, 05 Сен 2012, 13:00:24
Andrei5756
Сообщений: 27
Репутация: 0

Сообщение # 171 | 13:06:57
все равно не выравнивает ((
bandjuk
Сообщений: 6816
Репутация: 2398
Уровень замечаний:

Сообщение # 172 | 13:23:37
Andrei5756,
Code
<tr><td style="background:#000 url('http://246division.ucoz.ru/ogon2.jpg') no-repeat center center fixed; -moz-background-size:cover; -o-background-size:102% auto; -webkit-background-size:102% auto; -khtml-background-size:cover; background-size:cover; text-align: center; color:#FFFFFF; font:25pt bold Verdana,Tahoma;"><!-- <logo> -->Памяти 246ой Шумской стрелковой дивизии<!-- </logo> --></td></tr>
Сообщение отредактировал bandjuk - Среда, 05 Сен 2012, 13:24:05
Andrei5756
Сообщений: 27
Репутация: 0

Сообщение # 173 | 13:26:54
супер!
благодарю. )
maloir
Сообщений: 45
Репутация: 35

Сообщение # 174 | 17:24:42
Здравствуйте поскажите пожалусто как на сайте темный фон сделать белым. Мой шаблон 601

vadglush
Сообщений: 2
Репутация: 0

Сообщение # 175 | 17:55:11
Добрый день! Прошу прощение за очередное беспокойство! Но не где ранее не смог найти решение на мою проблему!
Надо понять фон сайта (сейчас он белый) на фон нарисованный в картинке(.jpg)
как мне это сделать?
Вот css

Сообщение отредактировал Shеriff - Понедельник, 17 Сен 2012, 17:58:05
Fosters
Сообщений: 145
Репутация: 31

Сообщение # 176 | 20:59:51
vadglush, Для начала необходимо создать папку imgfon и загрузить в нее подготовленные фоновые изображения. Все картинки необходимо переименовать по шаблону: число.jpg, пример: 1.jpg, 2jpg и т.д.
Затем тегу боди присваиваем id="imgfon". Копируем и вставляем между тегами ... ниже приведенный код:

Code
script type="text/javascript">   
   window.onload = changeBG;   
   function changeBG() {   
   var first = 1;   
   var last = 4;   
   var path = '/imgfon/';   
   var img_src = 'url("' + path + getRandomInt(first,last) + '.jpg")';   
   var div = document.getElementById("main");   
   div.style.backgroundImage=img_src;   
   }   
   function getRandomInt(min, max)   
   {   
   return Math.floor(Math.random() * (max - min + 1)) + min;   
   }   
   </script>


походу так.
vadglush
Сообщений: 2
Репутация: 0

Сообщение # 177 | 10:34:17
Пардон за глупость но какому тегу присваивать и куда вставлять! я совсем туплю... заранее прошу прощения
StreloK14
Сообщений: 44
Репутация: 45

Сообщение # 178 | 12:06:17
Fosters, %)
vadglush, нужно просто фон сделать картинкой, так?
Если да, то в css вставляешь:

Code
body {margin:0;padding:0; background:url('ссылка на картинку'); background-attachment: fixed; background-position: center;}
AvtoMik
Сообщений: 1
Репутация: 0

Сообщение # 179 | 10:49:25
Добрый День! Помогите пожалуйста сменить центральную часть фона (между блоками по их длине до машины :) ) и отдельно цвет самих блоков. За ранее Вам огромное спасибо!
http://avtoshkolamik.ucoz.com/ (сайт)
CSS:
/* General Style */
body {background:#996666; margin:0px; padding:0px;text-align:center;}
#wrap {width:1000px;margin-left:auto;margin-right:auto;width: expression(document.body.clientWidth > 1000 ? "1000" : "1000px");text-align:left;min-width:1000px;background:url('/.s/t/832/2.gif') repeat-y;}
#topPick {background:url('/.s/t/832/3.jpg') no-repeat;height:327px;}
#header {height:300px;}
#dataBar {text-align:left;padding:5px 55px 5px 350px;color:#555555;font-size:7pt;}
#logo {position:relative;top:60px;left:550px;background:url('/.s/t/832/4.gif') top center no-repeat;padding-top:75px;width:300px;}
#logo h1 {color:#FFD52C;font-weight:normal;font-size:25px;text-align:center;margin:0;padding:0;}
#navBar {text-align:center;color:#FFFFFF;}
#leftColumn {width:199px;float:left;}
#content {width:562px;margin-left:20px;margin-right:20px;float:left;padding:20px 0px;overflow:auto;}
#rightColumn {width:199px;float:right;}
#footer {background:url('/.s/t/832/5.gif') no-repeat #1A0E01;text-align:center;color:#FFFFFF;padding:15px;}

.boxTable {width:199px;padding:0;margin:0px;text-align:center;}
.boxTable h2 {font-size:7pt;color:#000000;padding:3px;margin:0px;background:#F0CA2A;}
.boxContent {margin-left:auto;margin-right:auto;width:189px;padding:5px 0px;text-align:left;}
.center {text-align:center; color:#CCFFFF;}

.orange a:link {text-decoration:underline; color:#FFFFFF;}
.orange a:active {text-decoration:underline; color:#FFFFFF;}
.orange a:visited {text-decoration:underline; color:#FFFFFF;}
.orange a:hover {text-decoration:none; color:#000000;}

#navBar a {background:#000000;padding:2px 5px 3px 5px;}
#navBar a:link {text-decoration:none; color:#FFFFFF;}
#navBar a:active {text-decoration:none; color:#FFFFFF;}
#navBar a:visited {text-decoration:none; color:#FFFFFF;}
#navBar a:hover {text-decoration:none; background:#FFD52C;color:#000000;}

a:link {text-decoration:underline; color:#FFD52C;}
a:active {text-decoration:underline; color:#FFD52C;}
a:visited {text-decoration:underline; color:#FFD52C;}
a:hover {text-decoration:none; color:#CCCCCC;}

h1 {color:#CCCCCC;font-size:14pt;}

td, body {font-family:verdana,arial,helvetica; font-size:8pt; color:#9F9F9F}
form {padding:0px;margin:0px;}
input,textarea,select {vertical-align:middle; font-size:8pt; font-family:verdana,arial,helvetica;}
.copy {font-size:7pt;}

a.noun:link {text-decoration:none; color:#CCCCCC}
a.noun:active {text-decoration:none; color:#CCCCCC}
a.noun:visited {text-decoration:none; color:#CCCCCC}
a.noun:hover {text-decoration:none; color:#FFFFFF}
.mframe1 {padding:2 10 30 10px;}
hr {color:#464646;height:1px;}
label {cursor:pointer;cursor:hand}

.blocktitle {font-family:Verdana,Sans-Serif;color:#FFFFFF;font-size:13px;font-weight:bold; padding-left:22px; background: url('/.s/t/832/6.gif') no-repeat 5px 2px;}

.menut0 {}
.menut {padding:2 3 3 15px;}
.mframe {padding:2 0 30 30px;}
.bannerTable {width:468;height:60;}

.menu1 {font-weight:bold;font-size:8pt;font-family:Arial,Sans-Serif;}
a.menu1:link {text-decoration:underline; color:#CCCCCC}
a.menu1:active {text-decoration:underline; color:#CCCCCC}
a.menu1:visited {text-decoration:underline; color:#CCCCCC}
a.menu1:hover {text-decoration:none; color:#FFFFFF}
/* ------------- */

/* Menus */
ul.uz, ul.uMenuRoot {list-style: none; margin: 0 0 0 0; padding-left: 0px;}
li.menus {margin: 0; padding: 0 0 0 13px; background: url('/.s/t/832/7.gif') no-repeat 0px 3px; margin-bottom: .6em;}
/* ----- */

/* Site Menus */
.uMenuH li {float:left;padding:0 5px;}

.uMenuV .uMenuItem {font-weight:bold;font-size:10pt;}
.uMenuV li a:link {text-decoration:none; color:#FF8C00;}
.uMenuV li a:active {text-decoration:none; color:#FF8C00;}
.uMenuV li a:visited {text-decoration:none; color:#FF8C00;}
.uMenuV li a:hover {text-decoration:none; color:#636363;}

.uMenuV .uMenuItemA {font-weight:bold;}
.uMenuV a.uMenuItemA:link {text-decoration:none; color:#F0CA2A;}
.uMenuV a.uMenuItemA:visited {text-decoration:none; color:#F0CA2A;}
.uMenuV a.uMenuItemA:hover {text-decoration:underline; color:#F0CA2A;}
.uMenuV .uMenuArrow {position:absolute;width:10px;height:10px;right:0;top:3px;background:url('/.s/img/wd/1/ar1.gif') no-repeat 0 0;}
.uMenuV li {margin: 0; padding: 0 0 0 20px; background:url('/.s/t/832/8.gif') no-repeat;margin-bottom: .6em;}
/* --------- */

/* Module Part Menu */
.catsTd {padding: 0 0 6px 13px; background: url('/.s/t/832/7.gif') no-repeat 0px 3px;}
.catName {font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:11px;}
.catNameActive {font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:11px;}
.catNumData {font-size:7pt;color:#B2B2B2;}
.catDescr {font-size:7pt; padding-left:10px;}
a.catName:link {text-decoration:none; color:#CCCCCC;}
a.catName:visited {text-decoration:none; color:#CCCCCC;}
a.catName:hover {text-decoration:none; color:#FFFFFF;}
a.catName:active {text-decoration:none; color:#CCCCCC;}
a.catNameActive:link {text-decoration:none; color:#FFFFFF;}
a.catNameActive:visited {text-decoration:none; color:#FFFFFF;}
a.catNameActive:hover {text-decoration:underline; color:#FFFFFF;}
a.catNameActive:active {text-decoration:none; color:#FFFFFF;}
/* ----------------- */

/* Entries Style */
.eBlock {border:1px solid #393939;}
.eTitle {font-family:Verdana,Arial,Sans-Serif;font-size:13px;font-weight:bold;color:#FFFFFF; padding: 5px 5px 5px 25px; background: url('/.s/t/832/9.gif') left center no-repeat;}
.eTitle a:link {text-decoration:underline; color:#FFFFFF;}
.eTitle a:visited {text-decoration:underline; color:#FFFFFF;}
.eTitle a:hover {text-decoration:none; color:#FFFFFF;}
.eTitle a:active {text-decoration:underline; color:#FFFFFF;}

.eText, .eMessage {text-align:justify; padding:10px !important;}

.eDetails {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:7pt; }
.eDetails1 {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:8pt; }
.eDetails2 {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:8pt; }

.eRating {font-size:7pt;}

.eAttach {margin: 16px 0 0 0; padding: 0 0 0 15px; background: url('/.s/t/832/10.gif') no-repeat 0px 0px;}
/* --------------- */

/* Entry Manage Table */
.manTable {border:1px solid #555555;background:#2C2C2C;}
.manTdError {color:#FF0000;}
.manTd1 {}
.manTd2 {}
.manTd3 {}
.manTdSep {}
.manHr {}
.manTdBrief {}
.manTdText {}
.manTdFiles {}
.manFlFile {}
.manTdBut {}
.manFlSbm {}
.manFlRst {}
.manFlCnt {}
/* ------------------ */

/* Comments Style */
.cAnswer {color:#838383;padding-left:15px;padding-top:4px;font-style:italic;}

.cBlock1 {background:#2C2C2C;}
.cBlock2 {background:#2C2C2C;}
/* -------------- */

/* Comments Form Style */
.commTable {background:#2C2C2C;}
.commTd1 {color:#FF981E;font-weight:bold;padding-left:5px;}
.commTd2 {padding-bottom:2px;}
.commFl {width:100%;color:#636363;background:#222222;border:none;}
.smiles {border:1px solid #555555;background:#222222;border:none;}
.commReg {padding: 10 0 10 0px; text-align:center;}
.commError {color:#FF0000;}
.securityCode {color:#636363;background:#222222;border:none;}
/* ------------------- */

/* News/Blog Archive Menu */
.archUl {list-style: none; margin:0; padding-left:0;}
.archLi {padding: 0 0 3px 10px; background: url('/.s/t/832/11.gif') no-repeat 0px 4px;}
.archActive {color:#FFFFFF;}
a.archLink:link {text-decoration:underline; color:#FFFFFF;}
a.archLink:visited {text-decoration:underline; color:#FFFFFF;}
a.archLink:hover {text-decoration:none; color:#D8D5D5;}
a.archLink:active {text-decoration:none; color:#D8D5D5;}
/* ---------------------- */

Добавлено (18-Окт-2012, 15:48:39)
---------------------------------------------
(Продолжение):
/* News/Blog Archive Style */
.archiveCalendars {text-align:center;color:#E2B4B4;}
.archiveDateTitle {font-weight:bold;color:#FFFFFF;padding-top:15px;}
.archEntryHr {width:250px;color:#333333;}
.archiveeTitle li {margin-left: 15px; padding: 0 0 0 15px; background: url('/.s/t/832/12.gif') no-repeat 0px 2px; margin-bottom: .6em;}
.archiveEntryTime {width:65px;font-style:italic;}
.archiveEntryComms {font-size:9px;color:#C3C3C3;}
a.archiveDateTitleLink:link {text-decoration:none; color:#FFFFFF}
a.archiveDateTitleLink:visited {text-decoration:none; color:#FFFFFF}
a.archiveDateTitleLink:hover {text-decoration:underline; color:#FFFFFF}
a.archiveDateTitleLink:active {text-decoration:underline; color:#FFFFFF}
.archiveNoEntry {text-align:center;color:#E2B4B4;}
/* ------------------------ */

/* News/Blog Calendar Style */
.calTable {margin-left:auto;margin-right:auto;}
.calMonth {}
.calWday {color:#FFFFFF; background:#444444; width:18px;}
.calWdaySe {color:#FFFFFF; background:#555555; width:18px;}
.calWdaySu {color:#FFFFFF; background:#555555; width:18px; font-weight:bold;}
.calMday {color:#CCCCCC;background:#202020;}
.calMdayA {color:#000000;background:#CCCCCC;}
.calMdayIs {color:#C04141;background:#222222;font-weight:bold;border:1px solid #555555;}
.calMdayIsA {border:1px solid #555555; background:#333333;font-weight:bold;}
a.calMonthLink:link,a.calMdayLink:link {text-decoration:none; color:#FFFFFF;}
a.calMonthLink:visited,a.calMdayLink:visited {text-decoration:none; color:#FFFFFF;}
a.calMonthLink:hover,a.calMdayLink:hover {text-decoration:underline; color:#FFFFFF;}
a.calMonthLink:active,a.calMdayLink:active {text-decoration:underline; color:#FFFFFF;}
/* ------------------------ */

/* Poll styles */
.pollBut {width:110px;}

.pollBody {padding:7px; margin:0px; background:#000000}
.textResults {background:#FFFFFF}
.textResultsTd {background:#5F5F5F}

.pollNow {background:#FFFFFF}
.pollNowTd {background:#5F5F5F}

.totalVotesTable {background:#FFFFFF}
.totalVotesTd {background:#5F5F5F}
/* ---------- */

/* User Group Marks */
a.groupModer:link,a.groupModer:visited,a.groupModer:hover {color:yellow;}
a.groupAdmin:link,a.groupAdmin:visited,a.groupAdmin:hover {color:pink;}
a.groupVerify:link,a.groupVerify:visited,a.groupVerify:hover {color:#99CCFF;}
/* ---------------- */

/* Other Styles */
.replaceTable {background:#2C2C2C;height:100px;width:300px;}
.replaceBody {background:#000000;}

.legendTd {font-size:7pt;}
/* ------------ */

/* ===== forum Start ===== */

/* General forum Table View */
.gTable {background:#000000;border-bottom:2px solid #DDE5EC;}
.gTableTop {padding:2px;height:32px;background:url('/.s/t/832/5.gif') no-repeat #1A0E01;border:1px solid #494949; color:#000000;font-family:Verdana,Sans-Serif;font-size:13px;font-weight:bold; padding-left:22px;}
.gTableSubTop {padding:2px;background:url('/.s/t/832/13.gif') #000000;color:#767676;height:21px;font-size:10px;border:1px solid #494949;}
.gTableBody {padding:2px;background:#996699;}
.gTableBody1 {padding:2px;background:#996699;}
.gTableBottom {padding:2px;background:#202020;}
.gTableLeft {padding:2px;background:#202020;font-weight:bold;color:#CCCCCC}
.gTableRight {padding:2px;background:#202020;color:#666666;}
.gTableError {padding:2px;background:#202020;color:#FF0000;}
/* ------------------------ */

/* Forums Styles */
.forumNameTd,.forumLastPostTd {padding:2px;background:#202020}
.forumIcoTd,.forumThreadTd,.forumPostTd {padding:2px;background:#222222}
.forumLastPostTd,.forumArchive {padding:2px;font-size:7pt;}

a.catLink:link {text-decoration:none; color:#000000;}
a.catLink:visited {text-decoration:none; color:#000000;}
a.catLink:hover {text-decoration:underline; color:#000000;}
a.catLink:active {text-decoration:none; color:#000000;}

.lastPostGuest,.lastPostUser,.threadAuthor {font-weight:bold}
.archivedForum{font-size:7pt;color:#FF0000;font-weight:bold;}
/* ------------- */

/* forum Titles & other */
.forum {font-weight:bold;font-size:9pt;}
.forumDescr,.forumModer {color:#888888;font-size:7pt;}
.forumViewed {font-size:9px;}
a.forum:link, a.lastPostUserLink:link, a.forumLastPostLink:link, a.threadAuthorLink:link {text-decoration:underline; color:#CCCCCC;}
a.forum:visited, a.lastPostUserLink:visited, a.forumLastPostLink:visited, a.threadAuthorLink:visited {text-decoration:underline; color:#CCCCCC;}
a.forum:hover, a.lastPostUserLink:hover, a.forumLastPostLink:hover, a.threadAuthorLink:hover {text-decoration:none; color:#FFFFFF;}
a.forum:active, a.lastPostUserLink:active, a.forumLastPostLink:active, a.threadAuthorLink:active {text-decoration:underline; color:#CCCCCC;}
/* -------------------- */

/* forum Navigation Bar */
.forumNamesBar {padding-bottom:7px;font-weight:bold;font-size:7pt;}
.forumBarKw {font-weight:normal;}
a.forumBarA:link {text-decoration:none; color:#CCCCCC;}
a.forumBarA:visited {text-decoration:none; color:#CCCCCC;}
a.forumBarA:hover {text-decoration:underline; color:#FFFFFF;}
a.forumBarA:active {text-decoration:underline; color:#CCCCCC;}
/* -------------------- */

/* forum Fast Navigation Blocks */
.fastNav,.fastSearch,.fastLoginForm {font-size:7pt;}
/* ---------------------------- */

/* forum Fast Navigation Menu */
.fastNavMain {background:#862D2D;color:#FFFFFF;}
.fastNavCat {background:#F9E6E6;}
.fastNavCatA {background:#F9E6E6;color:#0000FF}
.fastNavForumA {color:#0000FF}
/* -------------------------- */

/* forum Page switches */
.pagesInfo {background:#202020;padding-right:10px;font-size:7pt;}
.switches {background:#2B2B2B;}
.switch {background:#202020;width:15px;font-size:7pt;}
.switchActive {background:#555555;font-weight:bold;color:#CCCCCC;width:15px}
a.switchDigit:link,a.switchBack:link,a.switchNext:link {text-decoration:none; color:#CCCCCC;}
a.switchDigit:visited,a.switchBack:visited,a.switchNext:visited {text-decoration:none; color:#CCCCCC;}
a.switchDigit:hover,a.switchBack:hover,a.switchNext:hover {text-decoration:underline; color:#FFFFFF;}
a.switchDigit:active,a.switchBack:active,a.switchNext:active {text-decoration:underline; color:#CCCCCC;}
/* ------------------- */

/* forum Threads Style */
.threadNametd,.threadAuthTd,.threadLastPostTd {padding:2px;padding:2px;background:#202020}
.threadIcoTd,.threadPostTd,.threadViewTd {padding:2px;background:#222222}
.threadLastPostTd {padding:2px;font-size:7pt;}
.threadDescr {color:#666666;font-size:7pt;}
.threadNoticeLink {font-weight:bold;}
.threadsType {padding:2px;background:#222222;height:20px;font-weight:bold;font-size:7pt;color:#FFFFFF;padding-left:40px; border:1px solid #494949;}
.threadsDetails {padding:2px;background:#373737;height:20px;color:#555555;color:#FFFFFF;border:1px solid #494949;}
.forumOnlineBar {padding:2px;background:#161616;height:20px;color:#CCCCCC;border:1px solid #494949;}

a.threadPinnedLink:link {text-decoration:none; color:#CCCCCC;}
a.threadPinnedLink:visited {text-decoration:none; color:#CCCCCC;}
a.threadPinnedLink:hover {text-decoration:underline; color:#FFFFFF;}
a.threadPinnedLink:active {text-decoration:underline; color:#CCCCCC;}

.threadPinnedLink,.threadLink {font-weight:bold;}
a.threadLink:link {text-decoration:underline; color:#CCCCCC;}
a.threadLink:visited {text-decoration:underline; color:#CCCCCC;}
a.threadLink:hover {text-decoration:none; color:#FFFFFF;}
a.threadLink:active {text-decoration:underline; color:#CCCCCC;}

.postpSwithces {font-size:7pt;}
.thDescr {font-weight:normal;}
.threadFrmBlock {font-size:7pt;text-align:right;}
/* ------------------- */

/* Posts View */
.postTable {background:#555555}
.postPoll {background:#222222;text-align:center;}
.postFirst {background:#222222;border-bottom:1px solid silver;}
.postRest1 {background:#222222;}
.postRest2 {background:#222222;}
.postSeparator {height:2px;background:#CCCCCC;}

.postTdTop {background:url('/.s/t/832/13.gif') #000000;color:#767676;height:21px;font-size:10px;border:1px solid #494949;}
.postBottom {background:#202020;height:20px;color:#555555;}
.postUser {font-weight:bold;}
.postTdInfo {background:#222222;text-align:center;padding:5px;}
.postRankName {margin-top:5px;}
.postRankIco {margin-bottom:5px;margin-bottom:5px;}
.reputation {margin-top:5px;}
.signatureHr {margin-top:20px;color:#CCCCCC;}
.posttdMessage {background:#202020;padding:5px;}

.postPoll {padding:5px;}
.pollQuestion {text-align:center;font-weight:bold;}
.pollButtons,.pollTotal {text-align:center;}
.pollSubmitBut,.pollreSultsBut {width:140px;font-size:7pt;}
.pollSubmit {font-weight:bold;}
.pollEnd {text-align:center;height:30px;}

.codeMessage {background:#555555;font-size:9px;}
.quoteMessage {background:#555555;font-size:9px;}

.signatureView {font-size:7pt;}
.edited {padding-top:30px;font-size:7pt;text-align:right;color:#555555;}
.editedBy {font-weight:bold;font-size:8pt;}

.statusBlock {padding-top:3px;}
.statusOnline {color:#FFFF00;}
.statusOffline {color:#FFFFFF;}
/* ---------- */

/* forum AllInOne Fast Add */
.newThreadBlock {background: #F9F9F9;border: 1px solid #B2B2B2;}
.newPollBlock {background: #F9F9F9;border: 1px solid #B2B2B2;}
.newThreadItem {padding: 0 0 0 8px; background: url('/.s/t/832/14.gif') no-repeat 0px 4px;}
.newPollItem {padding: 0 0 0 8px; background: url('/.s/t/832/14.gif') no-repeat 0px 4px;}
/* ----------------------- */

/* Post Form */
.pollBut, .loginButton, .searchSbmFl, .commSbmFl, .signButton {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;}

.codeButtons {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;}
.codeCloseAll {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;font-weight:bold;}
.postNameFl,.postDescrFl {background:#2C2C2C;border:1px solid #555555;width:400px}
.postPollFl,.postQuestionFl {background:#2C2C2C;border:1px solid #555555;width:400px}
.postResultFl {background:#2C2C2C;border:1px solid #555555;width:50px}
.postAnswerFl {background:#2C2C2C;border:1px solid #555555;width:300px}
.postTextFl {background:#2C2C2C;border:1px solid #555555;width:550px;height:150px;color:#666666;}
.postUserFl {background:#2C2C2C;border:1px solid #555555;width:300px}

.pollHelp {font-weight:normal;font-size:7pt;padding-top:3px;}
.smilesPart {padding-top:5px;text-align:center}
/* --------- */

/* ====== forum End ====== */

Добавлено (19-Окт-2012, 10:45:56)
---------------------------------------------
bandjuk, Добрый День! Помогите пожалуйста сменить центральную часть фона (между блоками по их длине до машины ) и отдельно цвет самих блоков. За ранее Вам огромное спасибо!
http://avtoshkolamik.ucoz.com/ (сайт)
CSS:
/* General Style */
body {background:#996666; margin:0px; padding:0px;text-align:center;}
#wrap {width:1000px;margin-left:auto;margin-right:auto;width: expression(document.body.clientWidth > 1000 ? "1000" : "1000px");text-align:left;min-width:1000px;background:url('/.s/t/832/2.gif') repeat-y;}
#topPick {background:url('/.s/t/832/3.jpg') no-repeat;height:327px;}
#header {height:300px;}
#dataBar {text-align:left;padding:5px 55px 5px 350px;color:#555555;font-size:7pt;}
#logo {position:relative;top:60px;left:550px;background:url('/.s/t/832/4.gif') top center no-repeat;padding-top:75px;width:300px;}
#logo h1 {color:#FFD52C;font-weight:normal;font-size:25px;text-align:center;margin:0;padding:0;}
#navBar {text-align:center;color:#FFFFFF;}
#leftColumn {width:199px;float:left;}
#content {width:562px;margin-left:20px;margin-right:20px;float:left;padding:20px 0px;overflow:auto;}
#rightColumn {width:199px;float:right;}
#footer {background:url('/.s/t/832/5.gif') no-repeat #1A0E01;text-align:center;color:#FFFFFF;padding:15px;}

.boxTable {width:199px;padding:0;margin:0px;text-align:center;}
.boxTable h2 {font-size:7pt;color:#000000;padding:3px;margin:0px;background:#F0CA2A;}
.boxContent {margin-left:auto;margin-right:auto;width:189px;padding:5px 0px;text-align:left;}
.center {text-align:center; color:#CCFFFF;}

.orange a:link {text-decoration:underline; color:#FFFFFF;}
.orange a:active {text-decoration:underline; color:#FFFFFF;}
.orange a:visited {text-decoration:underline; color:#FFFFFF;}
.orange a:hover {text-decoration:none; color:#000000;}

#navBar a {background:#000000;padding:2px 5px 3px 5px;}
#navBar a:link {text-decoration:none; color:#FFFFFF;}
#navBar a:active {text-decoration:none; color:#FFFFFF;}
#navBar a:visited {text-decoration:none; color:#FFFFFF;}
#navBar a:hover {text-decoration:none; background:#FFD52C;color:#000000;}

a:link {text-decoration:underline; color:#FFD52C;}
a:active {text-decoration:underline; color:#FFD52C;}
a:visited {text-decoration:underline; color:#FFD52C;}
a:hover {text-decoration:none; color:#CCCCCC;}

h1 {color:#CCCCCC;font-size:14pt;}

td, body {font-family:verdana,arial,helvetica; font-size:8pt; color:#9F9F9F}
form {padding:0px;margin:0px;}
input,textarea,select {vertical-align:middle; font-size:8pt; font-family:verdana,arial,helvetica;}
.copy {font-size:7pt;}

a.noun:link {text-decoration:none; color:#CCCCCC}
a.noun:active {text-decoration:none; color:#CCCCCC}
a.noun:visited {text-decoration:none; color:#CCCCCC}
a.noun:hover {text-decoration:none; color:#FFFFFF}
.mframe1 {padding:2 10 30 10px;}
hr {color:#464646;height:1px;}
label {cursor:pointer;cursor:hand}

.blocktitle {font-family:Verdana,Sans-Serif;color:#FFFFFF;font-size:13px;font-weight:bold; padding-left:22px; background: url('/.s/t/832/6.gif') no-repeat 5px 2px;}

.menut0 {}
.menut {padding:2 3 3 15px;}
.mframe {padding:2 0 30 30px;}
.bannerTable {width:468;height:60;}

.menu1 {font-weight:bold;font-size:8pt;font-family:Arial,Sans-Serif;}
a.menu1:link {text-decoration:underline; color:#CCCCCC}
a.menu1:active {text-decoration:underline; color:#CCCCCC}
a.menu1:visited {text-decoration:underline; color:#CCCCCC}
a.menu1:hover {text-decoration:none; color:#FFFFFF}
/* ------------- */

/* Menus */
ul.uz, ul.uMenuRoot {list-style: none; margin: 0 0 0 0; padding-left: 0px;}
li.menus {margin: 0; padding: 0 0 0 13px; background: url('/.s/t/832/7.gif') no-repeat 0px 3px; margin-bottom: .6em;}
/* ----- */

/* Site Menus */
.uMenuH li {float:left;padding:0 5px;}

.uMenuV .uMenuItem {font-weight:bold;font-size:10pt;}
.uMenuV li a:link {text-decoration:none; color:#FF8C00;}
.uMenuV li a:active {text-decoration:none; color:#FF8C00;}
.uMenuV li a:visited {text-decoration:none; color:#FF8C00;}
.uMenuV li a:hover {text-decoration:none; color:#636363;}

.uMenuV .uMenuItemA {font-weight:bold;}
.uMenuV a.uMenuItemA:link {text-decoration:none; color:#F0CA2A;}
.uMenuV a.uMenuItemA:visited {text-decoration:none; color:#F0CA2A;}
.uMenuV a.uMenuItemA:hover {text-decoration:underline; color:#F0CA2A;}
.uMenuV .uMenuArrow {position:absolute;width:10px;height:10px;right:0;top:3px;background:url('/.s/img/wd/1/ar1.gif') no-repeat 0 0;}
.uMenuV li {margin: 0; padding: 0 0 0 20px; background:url('/.s/t/832/8.gif') no-repeat;margin-bottom: .6em;}
/* --------- */

/* Module Part Menu */
.catsTd {padding: 0 0 6px 13px; background: url('/.s/t/832/7.gif') no-repeat 0px 3px;}
.catName {font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:11px;}
.catNameActive {font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:11px;}
.catNumData {font-size:7pt;color:#B2B2B2;}
.catDescr {font-size:7pt; padding-left:10px;}
a.catName:link {text-decoration:none; color:#CCCCCC;}
a.catName:visited {text-decoration:none; color:#CCCCCC;}
a.catName:hover {text-decoration:none; color:#FFFFFF;}
a.catName:active {text-decoration:none; color:#CCCCCC;}
a.catNameActive:link {text-decoration:none; color:#FFFFFF;}
a.catNameActive:visited {text-decoration:none; color:#FFFFFF;}
a.catNameActive:hover {text-decoration:underline; color:#FFFFFF;}
a.catNameActive:active {text-decoration:none; color:#FFFFFF;}
/* ----------------- */

/* Entries Style */
.eBlock {border:1px solid #393939;}
.eTitle {font-family:Verdana,Arial,Sans-Serif;font-size:13px;font-weight:bold;color:#FFFFFF; padding: 5px 5px 5px 25px; background: url('/.s/t/832/9.gif') left center no-repeat;}
.eTitle a:link {text-decoration:underline; color:#FFFFFF;}
.eTitle a:visited {text-decoration:underline; color:#FFFFFF;}
.eTitle a:hover {text-decoration:none; color:#FFFFFF;}
.eTitle a:active {text-decoration:underline; color:#FFFFFF;}

.eText, .eMessage {text-align:justify; padding:10px !important;}

.eDetails {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:7pt; }
.eDetails1 {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:8pt; }
.eDetails2 {background:#353535;color:#999999;padding-bottom:5px;padding-top:3px;text-align:left;font-size:8pt; }

.eRating {font-size:7pt;}

.eAttach {margin: 16px 0 0 0; padding: 0 0 0 15px; background: url('/.s/t/832/10.gif') no-repeat 0px 0px;}
/* --------------- */

/* Entry Manage Table */
.manTable {border:1px solid #555555;background:#2C2C2C;}
.manTdError {color:#FF0000;}
.manTd1 {}
.manTd2 {}
.manTd3 {}
.manTdSep {}
.manHr {}
.manTdBrief {}
.manTdText {}
.manTdFiles {}
.manFlFile {}
.manTdBut {}
.manFlSbm {}
.manFlRst {}
.manFlCnt {}
/* ------------------ */

/* Comments Style */
.cAnswer {color:#838383;padding-left:15px;padding-top:4px;font-style:italic;}

.cBlock1 {background:#2C2C2C;}
.cBlock2 {background:#2C2C2C;}
/* -------------- */

/* Comments Form Style */
.commTable {background:#2C2C2C;}
.commTd1 {color:#FF981E;font-weight:bold;padding-left:5px;}
.commTd2 {padding-bottom:2px;}
.commFl {width:100%;color:#636363;background:#222222;border:none;}
.smiles {border:1px solid #555555;background:#222222;border:none;}
.commReg {padding: 10 0 10 0px; text-align:center;}
.commError {color:#FF0000;}
.securityCode {color:#636363;background:#222222;border:none;}
/* ------------------- */

/* News/Blog Archive Menu */
.archUl {list-style: none; margin:0; padding-left:0;}
.archLi {padding: 0 0 3px 10px; background: url('/.s/t/832/11.gif') no-repeat 0px 4px;}
.archActive {color:#FFFFFF;}
a.archLink:link {text-decoration:underline; color:#FFFFFF;}
a.archLink:visited {text-decoration:underline; color:#FFFFFF;}
a.archLink:hover {text-decoration:none; color:#D8D5D5;}
a.archLink:active {text-decoration:none; color:#D8D5D5;}
/* ---------------------- */

Добавлено (19-Окт-2012, 10:49:25)
---------------------------------------------
bandjuk, (Продолжение):
/* News/Blog Archive Style */
.archiveCalendars {text-align:center;color:#E2B4B4;}
.archiveDateTitle {font-weight:bold;color:#FFFFFF;padding-top:15px;}
.archEntryHr {width:250px;color:#333333;}
.archiveeTitle li {margin-left: 15px; padding: 0 0 0 15px; background: url('/.s/t/832/12.gif') no-repeat 0px 2px; margin-bottom: .6em;}
.archiveEntryTime {width:65px;font-style:italic;}
.archiveEntryComms {font-size:9px;color:#C3C3C3;}
a.archiveDateTitleLink:link {text-decoration:none; color:#FFFFFF}
a.archiveDateTitleLink:visited {text-decoration:none; color:#FFFFFF}
a.archiveDateTitleLink:hover {text-decoration:underline; color:#FFFFFF}
a.archiveDateTitleLink:active {text-decoration:underline; color:#FFFFFF}
.archiveNoEntry {text-align:center;color:#E2B4B4;}
/* ------------------------ */

/* News/Blog Calendar Style */
.calTable {margin-left:auto;margin-right:auto;}
.calMonth {}
.calWday {color:#FFFFFF; background:#444444; width:18px;}
.calWdaySe {color:#FFFFFF; background:#555555; width:18px;}
.calWdaySu {color:#FFFFFF; background:#555555; width:18px; font-weight:bold;}
.calMday {color:#CCCCCC;background:#202020;}
.calMdayA {color:#000000;background:#CCCCCC;}
.calMdayIs {color:#C04141;background:#222222;font-weight:bold;border:1px solid #555555;}
.calMdayIsA {border:1px solid #555555; background:#333333;font-weight:bold;}
a.calMonthLink:link,a.calMdayLink:link {text-decoration:none; color:#FFFFFF;}
a.calMonthLink:visited,a.calMdayLink:visited {text-decoration:none; color:#FFFFFF;}
a.calMonthLink:hover,a.calMdayLink:hover {text-decoration:underline; color:#FFFFFF;}
a.calMonthLink:active,a.calMdayLink:active {text-decoration:underline; color:#FFFFFF;}
/* ------------------------ */

/* Poll styles */
.pollBut {width:110px;}

.pollBody {padding:7px; margin:0px; background:#000000}
.textResults {background:#FFFFFF}
.textResultsTd {background:#5F5F5F}

.pollNow {background:#FFFFFF}
.pollNowTd {background:#5F5F5F}

.totalVotesTable {background:#FFFFFF}
.totalVotesTd {background:#5F5F5F}
/* ---------- */

/* User Group Marks */
a.groupModer:link,a.groupModer:visited,a.groupModer:hover {color:yellow;}
a.groupAdmin:link,a.groupAdmin:visited,a.groupAdmin:hover {color:pink;}
a.groupVerify:link,a.groupVerify:visited,a.groupVerify:hover {color:#99CCFF;}
/* ---------------- */

/* Other Styles */
.replaceTable {background:#2C2C2C;height:100px;width:300px;}
.replaceBody {background:#000000;}

.legendTd {font-size:7pt;}
/* ------------ */

/* ===== forum Start ===== */

/* General forum Table View */
.gTable {background:#000000;border-bottom:2px solid #DDE5EC;}
.gTableTop {padding:2px;height:32px;background:url('/.s/t/832/5.gif') no-repeat #1A0E01;border:1px solid #494949; color:#000000;font-family:Verdana,Sans-Serif;font-size:13px;font-weight:bold; padding-left:22px;}
.gTableSubTop {padding:2px;background:url('/.s/t/832/13.gif') #000000;color:#767676;height:21px;font-size:10px;border:1px solid #494949;}
.gTableBody {padding:2px;background:#996699;}
.gTableBody1 {padding:2px;background:#996699;}
.gTableBottom {padding:2px;background:#202020;}
.gTableLeft {padding:2px;background:#202020;font-weight:bold;color:#CCCCCC}
.gTableRight {padding:2px;background:#202020;color:#666666;}
.gTableError {padding:2px;background:#202020;color:#FF0000;}
/* ------------------------ */

/* Forums Styles */
.forumNameTd,.forumLastPostTd {padding:2px;background:#202020}
.forumIcoTd,.forumThreadTd,.forumPostTd {padding:2px;background:#222222}
.forumLastPostTd,.forumArchive {padding:2px;font-size:7pt;}

a.catLink:link {text-decoration:none; color:#000000;}
a.catLink:visited {text-decoration:none; color:#000000;}
a.catLink:hover {text-decoration:underline; color:#000000;}
a.catLink:active {text-decoration:none; color:#000000;}

.lastPostGuest,.lastPostUser,.threadAuthor {font-weight:bold}
.archivedForum{font-size:7pt;color:#FF0000;font-weight:bold;}
/* ------------- */

/* forum Titles & other */
.forum {font-weight:bold;font-size:9pt;}
.forumDescr,.forumModer {color:#888888;font-size:7pt;}
.forumViewed {font-size:9px;}
a.forum:link, a.lastPostUserLink:link, a.forumLastPostLink:link, a.threadAuthorLink:link {text-decoration:underline; color:#CCCCCC;}
a.forum:visited, a.lastPostUserLink:visited, a.forumLastPostLink:visited, a.threadAuthorLink:visited {text-decoration:underline; color:#CCCCCC;}
a.forum:hover, a.lastPostUserLink:hover, a.forumLastPostLink:hover, a.threadAuthorLink:hover {text-decoration:none; color:#FFFFFF;}
a.forum:active, a.lastPostUserLink:active, a.forumLastPostLink:active, a.threadAuthorLink:active {text-decoration:underline; color:#CCCCCC;}
/* -------------------- */

/* forum Navigation Bar */
.forumNamesBar {padding-bottom:7px;font-weight:bold;font-size:7pt;}
.forumBarKw {font-weight:normal;}
a.forumBarA:link {text-decoration:none; color:#CCCCCC;}
a.forumBarA:visited {text-decoration:none; color:#CCCCCC;}
a.forumBarA:hover {text-decoration:underline; color:#FFFFFF;}
a.forumBarA:active {text-decoration:underline; color:#CCCCCC;}
/* -------------------- */

/* forum Fast Navigation Blocks */
.fastNav,.fastSearch,.fastLoginForm {font-size:7pt;}
/* ---------------------------- */

/* forum Fast Navigation Menu */
.fastNavMain {background:#862D2D;color:#FFFFFF;}
.fastNavCat {background:#F9E6E6;}
.fastNavCatA {background:#F9E6E6;color:#0000FF}
.fastNavForumA {color:#0000FF}
/* -------------------------- */

/* forum Page switches */
.pagesInfo {background:#202020;padding-right:10px;font-size:7pt;}
.switches {background:#2B2B2B;}
.switch {background:#202020;width:15px;font-size:7pt;}
.switchActive {background:#555555;font-weight:bold;color:#CCCCCC;width:15px}
a.switchDigit:link,a.switchBack:link,a.switchNext:link {text-decoration:none; color:#CCCCCC;}
a.switchDigit:visited,a.switchBack:visited,a.switchNext:visited {text-decoration:none; color:#CCCCCC;}
a.switchDigit:hover,a.switchBack:hover,a.switchNext:hover {text-decoration:underline; color:#FFFFFF;}
a.switchDigit:active,a.switchBack:active,a.switchNext:active {text-decoration:underline; color:#CCCCCC;}
/* ------------------- */

/* forum Threads Style */
.threadNametd,.threadAuthTd,.threadLastPostTd {padding:2px;padding:2px;background:#202020}
.threadIcoTd,.threadPostTd,.threadViewTd {padding:2px;background:#222222}
.threadLastPostTd {padding:2px;font-size:7pt;}
.threadDescr {color:#666666;font-size:7pt;}
.threadNoticeLink {font-weight:bold;}
.threadsType {padding:2px;background:#222222;height:20px;font-weight:bold;font-size:7pt;color:#FFFFFF;padding-left:40px; border:1px solid #494949;}
.threadsDetails {padding:2px;background:#373737;height:20px;color:#555555;color:#FFFFFF;border:1px solid #494949;}
.forumOnlineBar {padding:2px;background:#161616;height:20px;color:#CCCCCC;border:1px solid #494949;}

a.threadPinnedLink:link {text-decoration:none; color:#CCCCCC;}
a.threadPinnedLink:visited {text-decoration:none; color:#CCCCCC;}
a.threadPinnedLink:hover {text-decoration:underline; color:#FFFFFF;}
a.threadPinnedLink:active {text-decoration:underline; color:#CCCCCC;}

.threadPinnedLink,.threadLink {font-weight:bold;}
a.threadLink:link {text-decoration:underline; color:#CCCCCC;}
a.threadLink:visited {text-decoration:underline; color:#CCCCCC;}
a.threadLink:hover {text-decoration:none; color:#FFFFFF;}
a.threadLink:active {text-decoration:underline; color:#CCCCCC;}

.postpSwithces {font-size:7pt;}
.thDescr {font-weight:normal;}
.threadFrmBlock {font-size:7pt;text-align:right;}
/* ------------------- */

/* Posts View */
.postTable {background:#555555}
.postPoll {background:#222222;text-align:center;}
.postFirst {background:#222222;border-bottom:1px solid silver;}
.postRest1 {background:#222222;}
.postRest2 {background:#222222;}
.postSeparator {height:2px;background:#CCCCCC;}

.postTdTop {background:url('/.s/t/832/13.gif') #000000;color:#767676;height:21px;font-size:10px;border:1px solid #494949;}
.postBottom {background:#202020;height:20px;color:#555555;}
.postUser {font-weight:bold;}
.postTdInfo {background:#222222;text-align:center;padding:5px;}
.postRankName {margin-top:5px;}
.postRankIco {margin-bottom:5px;margin-bottom:5px;}
.reputation {margin-top:5px;}
.signatureHr {margin-top:20px;color:#CCCCCC;}
.posttdMessage {background:#202020;padding:5px;}

.postPoll {padding:5px;}
.pollQuestion {text-align:center;font-weight:bold;}
.pollButtons,.pollTotal {text-align:center;}
.pollSubmitBut,.pollreSultsBut {width:140px;font-size:7pt;}
.pollSubmit {font-weight:bold;}
.pollEnd {text-align:center;height:30px;}

.codeMessage {background:#555555;font-size:9px;}
.quoteMessage {background:#555555;font-size:9px;}

.signatureView {font-size:7pt;}
.edited {padding-top:30px;font-size:7pt;text-align:right;color:#555555;}
.editedBy {font-weight:bold;font-size:8pt;}

.statusBlock {padding-top:3px;}
.statusOnline {color:#FFFF00;}
.statusOffline {color:#FFFFFF;}
/* ---------- */

/* forum AllInOne Fast Add */
.newThreadBlock {background: #F9F9F9;border: 1px solid #B2B2B2;}
.newPollBlock {background: #F9F9F9;border: 1px solid #B2B2B2;}
.newThreadItem {padding: 0 0 0 8px; background: url('/.s/t/832/14.gif') no-repeat 0px 4px;}
.newPollItem {padding: 0 0 0 8px; background: url('/.s/t/832/14.gif') no-repeat 0px 4px;}
/* ----------------------- */

/* Post Form */
.pollBut, .loginButton, .searchSbmFl, .commSbmFl, .signButton {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;}

.codeButtons {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;}
.codeCloseAll {font-size:7pt;background: #333333;color:#FFFFFF;border:1px outset #333333;font-weight:bold;}
.postNameFl,.postDescrFl {background:#2C2C2C;border:1px solid #555555;width:400px}
.postPollFl,.postQuestionFl {background:#2C2C2C;border:1px solid #555555;width:400px}
.postResultFl {background:#2C2C2C;border:1px solid #555555;width:50px}
.postAnswerFl {background:#2C2C2C;border:1px solid #555555;width:300px}
.postTextFl {background:#2C2C2C;border:1px solid #555555;width:550px;height:150px;color:#666666;}
.postUserFl {background:#2C2C2C;border:1px solid #555555;width:300px}

.pollHelp {font-weight:normal;font-size:7pt;padding-top:3px;}
.smilesPart {padding-top:5px;text-align:center}
/* --------- */

/* ====== forum End ====== */ :(

bandjuk
Сообщений: 6816
Репутация: 2398
Уровень замечаний:

Сообщение # 180 | 10:53:46
Quote (AvtoMik)
сменить центральную часть фона (между блоками по их длине до машины

#wrap {width:1000px;margin-left:auto;margin-right:auto;width: expression(document.body.clientWidth > 1000 ? "1000" : "1000px");text-align:left;min-width:1000px;background:url('/.s/t/832/2.gif') repeat-y;}
Поиск:
Telegram
Будьте в курсе всех обновлений: подпишитесь на наш официальный Telegram-канал uCoz и задавайте вопросы в чате сообщества!