На форуме InfoScript.ru вы можете: задать вопросы по php, вопросы по javascript, вопросы по системе uCoz, заказать графику для вашего сайта и просто пообщаться с хорошими людьми
  • Страница 1 из 1
  • 1
Модератор форума: frenkmalcov  
Белая полоска
danger9393 Дата: Вторник, 22.06.2010, 16:41 | Сообщение # 1
Offline
Опытный
Стандартный аватар
Пользователи
Сообщений:113
Награды:0
Замечания:0%
Репутация
0
Короче вот на скрине

в верхней части сайта белая полоска какая то появилась,не понял я откуда взялась она,ну она там точно не нужна biggrin
Уберите её пожалуйста!
Верхняя часть сайта:
Code
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="21" style="border:1px solid #FFFFFF;background:url('/diz/9.gif');">  
$GLOBAL_GORMENU$  
</TD></TR></TBODY>  
<style type="text/css" media="all">  
@import url(http://fr3d00m-team.clan.su/ccs/menu.css);  
</style>

$GLOBAL_GORMENU$  
</TD></TR></TBODY>  
<style type="text/css" media="all">  
@import url(http://fr3d00m-team.clan.su/ccs/menu.css);  
</style>

<style>  
/* hint menu */  
.hint  
{  
background-color:#3d3d3d;  
line-height:10px;  
color:white;  
font-family:verdana,arial,helvetica;  
font-size:8pt;  
width:auto;  
border-top:1px solid white;  
border-right:1px solid white;  
border-bottom:1px solid white;  
border-left:1px solid white;  
margin:1px;  
padding:8px;  
position:absolute;  
visibility:hidden;  
}  
/* ---------------- */  
</style>  

<script>  
//Hint Start  
// CLASS : MW_System_Load  
// Init  
function MW_System_Load(){  
this.wib = screen.width;  
this.heb = screen.height;  
this.documes = (document.getElementById || document.createElement || document.getElementsByTagName) ? true : false;  
this.objects = window.addEventListener || window.attachEvent ? window : document.addEventListener ? document : null;  
this.types = 'load';  
}  
MW_System_Load.prototype.addsevent = function(func){  
if(this.objects.addEventListener){  
this.objects.addEventListener(this.types,func,false);  
return true;  
} else if (this.objects.attachEvent){  
this.objects.attachEvent("on" + this.types,func);  
} else {  
return false;  
}  
}  
MW_System_Load.prototype.browser = function(){  
this.ver = navigator.appVersion;  
this.agent = navigator.userAgent.toLowerCase();  
this.dom = document.getElementById ? 1:0;  
this.all = document.all ? 1:0;  
this.ie5 = (this.ver.indexOf("MSIE 5")>-1 && this.dom) ? 1:0;  
this.ie6 = (this.ver.indexOf("MSIE 6")>-1 && this.dom) ? 1:0;  
this.ie4 = (document.all && !this.dom) ? 1:0;  
this.ie = this.ie4 || this.ie5 || this.ie6;  
this.opera = this.agent.indexOf("opera")>-1;  
this.gecko = (this.agent.indexOf("gecko")!=-1) ? 1:0;  
this.bw = (this.ie || this.opera || this.gecko);  
return this;  
}  
MW_System_Load.prototype.findobj = function(obj){  
this.parent = window.document;  
if(this.parent[obj]){ return this.parent[obj]; }  
if(this.parent.all && this.parent.all[obj]){ return this.parent.all[obj]; }  
if(this.parent.layers && this.parent.layers[obj]){ return this.parent.layers[obj]; }  
if(this.parent.getElementById && this.parent.getElementById(obj)){ return this.parent.getElementById(obj); }  
return null;  
}  
var MW = new MW_System_Load();  
function MW_System_Hint(){}  
MW_System_Hint.prototype.show = function(obj,str){  
var hint = MW.findobj('hint');  
if(!obj){ return; }  
if(!MW.documes){ return; }  
if(!hint){ return; }  
hint.className = 'hint';  
hint.style.left = 15;  
hint.style.top = 50;  

obj.onmouseout = function(advance){  
hint.style.width = '';  
hint.style.visibility = 'hidden';  
if(hint.firstChild) hint.removeChild(hint.firstChild);  
hint.appendChild(document.createTextNode(str));  
};  
obj.onmousemove = function(advance){  
//str = str.replace(/</g,"<");  
//str = str.replace(/>/g,">");  
hint.style.width = '';  
hint.innerHTML = str;  
vc = document.getElementsByTagName((document.compatMode && document.compatMode=="CSS1Compat") ? "HTML":"BODY")[0];  
x = window.event ? event.clientX + vc.scrollLeft : advance.pageX;  
y = window.event ? event.clientY + vc.scrollTop : advance.pageY;  
vcwidth = vc.clientWidth ? vc.clientWidth + vc.scrollLeft : window.innerWidth + window.pageXOffset;  
vcheight = vc.innerHeight ? window.innerHeight + window.pageYOffset : vc.clientHeight + vc.scrollTop;  
  if(hint.offsetWidth>500){ hint.style.width = '200'; }  
  if((x + hint.offsetWidth + 15) > vcwidth){  
  hint.style.left = x - hint.offsetWidth - 4;  
  } else {  
  hint.style.left = x + 15;  
  }  
  if((y + hint.offsetHeight + 19) > vcheight){  
  hint.style.top = y - hint.offsetHeight;  
  } else {  
  hint.style.top = y + 25;  
  }  
  //if(typeof(hint.style.MozOpacity)!="undefined"){  
  hint.style.opacity = '.91';  
  hint.style.filter = "alpha(opacity:91)";  
  //}  
  hint.style.visibility = 'visible';  
};  
}  
MW_System_Hint.prototype.initialize = function(){  
var hint = document.createElement("DIV");  
hint.setAttribute('id','hint');  
document.getElementsByTagName('body')[0].appendChild(hint);  
hint.style.visibility = 'hidden';  
var hintmarker = ['a','img','img','input','span','div','textarea'];  
var textmarker = ['title','alt','title','title','title','title','title'];  
var lenmarker = hintmarker.length;  
for(var i=0; i<lenmarker; i++) {  
atr = document.getElementsByTagName(hintmarker[i]);  
for(var j=0; j<atr.length; j++)  
if(viewhint=atr[j].getAttribute(textmarker[i])){  
  atr[j].removeAttribute(textmarker[i]);  
  HINT.show(atr[j],viewhint);  
}  
}  
}  
var HINT = new MW_System_Hint();  
if(MW.objects){ MW.addsevent(HINT.initialize); }  
//Hint End  
</script>
<img id="mylogo" src="/img/0cf1ddc057de.gif" />  
  <style type="text/css">  
  #mylogo {width: 100%; margin: 0 0 0 0;}  
  </style>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="23" style="border:1px solid #FFFFFF;background:url('http://marvad-rap.ucoz.ru/img/d29ccde4e360.jpg');">
  <tr>
  <td width="50%" align="left" style="font-size:10px;padding-left:10px;"><div class="navig"><a href="$HOME_PAGE_LINK$" title="Главная">Главная</a> | <a href="$PERSONAL_PAGE_LINK$" title="Мой профиль">Мой профиль</a> | <a href="$LOGOUT_LINK$" title="Выход">Выход</a><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?><?else?> | <a href="$REGISTER_LINK$" title="Регистрация">Регистрация</a><?endif?><?endif?><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?> <?else?> | <a href="$LOGIN_LINK$" title="Вход">Вход</a><?endif?><?endif?></div></td>  
  <td width="50%" align="right" style="font-size:10px;padding-right:10px;"><div class="navig"><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?><b>Вы вошли как</font> <a href="$PERSONAL_PAGE_LINK$" title="Мой профиль">$USERNAME$</a> | Группа "<u>$USER_GROUP$</u>" | </b><a href="$RSS_LINK$" title="RSS">RSS</a><?else?>Приветствую Вас <b>$USERNAME$</b><?endif?><?endif?></td>  
  </tr>
</table>

Если надо вот ещё CSS(хотя наврядле):
Code
/* General Style */

/* === Tэг HIDE === */  
  .UhideBlockA {  
  color: #757575;  
  background-color: #f2f2f2;  
  border: 1px dotted #bebebe;  
  padding: 5px;  
  }  
  /* ================ */

.boxTitle {height:45px;background:url('/diz/6.png'); text-align:center;color:#1e90ff;padding-bottom:5px;}
.boxContent {background:url('/diz/17.gif'); padding:5px 10px 0 10px;}
.boxBottom {height:32px;background:url('/diz/2.png'); }
.boxTable {width:203px;margin-bottom:5px;}

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

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

.box {padding:5px;}
.box h3 {color:#FFE400;font-size:13pt;}

td, body {font-family:verdana,arial,helvetica; font-size:8pt; color:#C8C8C8}
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:#E4FAFD}
a.noun:active {text-decoration:none; color:#E4FAFD}
a.noun:visited {text-decoration:none; color:#E4FAFD}
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/955/19.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:none; color:#E4FAFD}
a.menu1:active {text-decoration:none; color:#E4FAFD}
a.menu1:visited {text-decoration:none; color:#E4FAFD}
a.menu1:hover {text-decoration:none; color:#FFFFFF}
/* ------------- */

.pagesBlockuz1 {color:#3399ff;border:0px;margin-bottom:10px;margin-top:10px;}  
.pagesBlockuz1 a:link,  
.pagesBlockuz1 a:visited,  
.pagesBlockuz1 a:hover,  
.pagesBlockuz1 a:active {text-decoration:none;color: #FFFFFF;background:#444444;padding:3px 10px;font-size:11px;font-weight:bold;}  
.pagesBlockuz1 a:hover {background:#323232;color:#3399FF;font-weight:bold;}  
.pagesBlockuz1 b {text-decoration:none;background:#585858;padding:3px 10px;color:#FFFFFF;font-size:11px;}  

.pagesBlockuz2 {color:#3399ff;border:0px;margin-bottom:10px;margin-top:10px;}  
.pagesBlockuz2 a:link,  
.pagesBlockuz2 a:visited,  
.pagesBlockuz2 a:hover,  
.pagesBlockuz2 a:active {text-decoration:none;color: #FFFFFF;background:#444444;padding:3px 10px;font-size:11px;font-weight:bold;}  
.pagesBlockuz2 a:hover {background:#323232;color:#3399FF;font-weight:bold;}  
.pagesBlockuz2 b {text-decoration:none;background:#585858;padding:3px 10px;color:#FFFFFF;font-size:11px;}

/* 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/955/20.gif') no-repeat 0px 2px; margin-bottom: .6em;}
/* ----- */

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

.uMenuV .uMenuItem {font-weight:normal;}
.uMenuV li a:link {text-decoration:none; color:#E4FAFD}
.uMenuV li a:active {text-decoration:none; color:#E4FAFD}
.uMenuV li a:visited {text-decoration:none; color:#E4FAFD}
.uMenuV li a:hover {text-decoration:none; color:#FFFFFF}

.uMenuV .uMenuItemA {font-weight:bold;}
.uMenuV a.uMenuItemA:link {text-decoration:none; color:#FFFFFF;}
.uMenuV a.uMenuItemA:visited {text-decoration:none; color:#FFFFFF}
.uMenuV a.uMenuItemA:hover {text-decoration:none; color:#FFFFFF}
.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 13px; background: url('http://cs-exe.ru/files3/8.gif') no-repeat 0px 2px; margin-bottom: .6em;}
/* --------- */

/* Module Part Menu */
.catsTd {padding: 0 0 6px 13px; background: url('/.s/t/955/20.gif') no-repeat 0px 2px;}
.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;}
.catDescr {font-size:7pt; padding-left:10px;}
a.catName:link {text-decoration:none; color:#E4FAFD;}
a.catName:visited {text-decoration:none; color:#E4FAFD;}
a.catName:hover {text-decoration:none; color:#FFFFFF;}
a.catName:active {text-decoration:none; color:#E4FAFD;}
a.catNameActive:link {text-decoration:none; color:#FFFFFF;}
a.catNameActive:visited {text-decoration:none; color:#FFFFFF;}
a.catNameActive:hover {text-decoration:none; color:#FFFFFF;}
a.catNameActive:active {text-decoration:none; color:#FFFFFF;}
/* ----------------- */
/* Entries Style */
.eBlock {background:url('http://src.ucoz.net/t/955/1.gif') #000000;border:1px solid #252525;}
.eTitle {font-family:Verdana,Arial,Sans-Serif;font-size:12px;font-weight:bold;color:#dedede; padding: 4px; border:1px solid #252525; background:url('/diz/15.bmp') repeat-x ;}
.eTitle a:link {text-decoration:none; color:#dedede;}
.eTitle a:visited {text-decoration:none; color:#dedede;}
.eTitle a:hover {text-decoration:none; color:#FFFFFF;}
.eTitle a:active {text-decoration:none; color:#dedede;}
.eText {text-align:justify; padding:10px;}

.eDetails {background:url('/diz/15.bmp');color:#60606B;padding-bottom:5px;padding-top:3px; text-align:left;font-size:7pt; }
.eDetails1 {background:url('/diz/15.bmp');color:#60606B;padding-bottom:5px;padding-top:3px; text-align:left;font-size:8pt; }
.eDetails2 {background:url('/diz/15.bmp');color:#60606B;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('http://src.ucoz.ru/t/955/21.gif') no-repeat 0px 0px;}
/* --------------- */

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

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

.cBlock1 {background:url('/.s/t/955/1.gif') #000000;border:1px solid #252525;}
.cBlock2 {background:url('/.s/t/955/1.gif') #000000;border:1px solid #252525;}
/* -------------- */

/* Comments Form Style */
.commTable {background:url('/.s/t/955/1.gif') #000000;border:1px solid #252525;color:#FFFFFF;}
.commTd1 {color:#FFFFFF;font-weight:bold;padding-left:5px;}
.commTd2 {padding-bottom:2px;}
.commFl {width:100%;color:#FFFFFF;background:#000000;border:1px solid #252525;}
.smiles {border:1px solid #252525;background:#000000;}
.commReg {padding: 10 0 10 0px; text-align:center;}
.commError {color:#FF0000;}
.securityCode {color:#848484;background:#000000;border:1px solid #252525;}
/* ------------------- */

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

/* News/Blog Archive Style */
.archiveCalendars {text-align:center;color:#E2B4B4;}
.archiveDateTitle {font-weight:bold;color:#FFFFFF;padding-top:15px;}
.archEntryHr {width:250px;color:#2B2B30;}
.archiveeTitle li {margin-left: 15px; padding: 0 0 0 15px; background: url('/.s/t/955/23.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:none; color:#FFFFFF}
a.archiveDateTitleLink:active {text-decoration:none; color:#FFFFFF}
.archiveNoEntry {text-align:center;color:#E2B4B4;}
/* ------------------------ */

/* News/Blog Calendar Style */
.calMonth {}
.calWday {color:#FFFFFF; background:#3B3B42; width:18px;}
.calWdaySe {color:#FFFFFF; background:#747474; width:18px;}
.calWdaySu {color:#FFFFFF; background:#747474; width:18px; font-weight:bold;}
.calMday {color:#E4FAFD;background:#222226;}
.calMdayA {color:#000000;background:#E4FAFD;}
.calMdayIs {color:#C04141;background:url('/.s/t/955/1.gif') #000000;font-weight:bold;border:1px solid #252525;}
.calMdayIsA {border:1px solid #E4FAFD; background:#2B2B30;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:none; color:#FFFFFF;}
a.calMonthLink:active,a.calMdayLink:active {text-decoration:none; color:#FFFFFF;}
/* ------------------------ */

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

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

.pollNow {background:#FFFFFF}
.pollNowTd {background:#700000}

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

/* User Group Marks */
a.groupModer:link,a.groupModer:visited,a.groupModer:hover {color:yellow;}
a.groupOther5:link,a.groupOther5:visited,a.grou pOther5:hover {color:#0099FF;}
a.groupAdmin:link,a.groupAdmin:visited,a.groupAdmin:hover {color:red;}
a.groupVerify:link,a.groupVerify:visited,a.groupVerify:hover {color:#99CCFF;}

/* ---------------- */

/* Other Styles */
.replaceTable {background:#0F0F13;height:100px;width:300px;border:1px solid #252525;}
.replaceBody {background:url('/.s/t/955/1.gif') #000000;}

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

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

/* General forum Table View */
.gDivLeft {border-right:2px solid #)96dc24;}
.gTable {background:transparent;border-bottom:1px solid #96dc24;}
.gTableTop {padding:2px;border:1px solid #96dc24;background:url('/diz/15.bmp') ;height:23px;color:#96DC24;font-family:uppercase;font-family:Verdana,Sans-Serif;font-size:11px;font-weight:bold; padding-left:22px;}
.gTableSubTop {padding:2px;border:1px solid #96dc24;color:#ACACAC;height:23px;font-size:10px;background:url('/diz/15.bmp') center #1F1F52;}
.gTableBody {padding:2px;background:#222226;}
.gTableBody1 {padding:2px;background:#222226;}
.gTableBottom {padding:2px;background:#222226;}
.gTableLeft {padding:2px;background:#222226;font-weight:bold;color:#E4FAFD}
.gTableRight {padding:2px;background:#222226;color:#60606B;}
.gTableError {padding:2px;background:#222226;color:#FF0000;}
/* ------------------------ */

/* Forums Styles */
.forumNameTd,.forumLastPostTd {padding:2px;background:#222226}
.forumIcoTd,.forumThreadTd,.forumPostTd {padding:2px;background:url('/.s/t/955/25.png') top repeat-x #000000}
.forumLastPostTd,.forumArchive {padding:2px;font-size:7pt;}

a.catLink:link {text-decoration:none; color:#FFFFFF;}
a.catLink:visited {text-decoration:none; color:#FFFFFF;}
a.catLink:hover {text-decoration:none; color:#0099FF;}
a.catLink:active {text-decoration:none; color:#FFFFFF;}

.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:none; color:#E4FAFD;}
a.forum:visited, a.lastPostUserLink:visited, a.forumLastPostLink:visited, a.threadAuthorLink:visited {text-decoration:none; color:#E4FAFD;}
a.forum:hover, a.lastPostUserLink:hover, a.forumLastPostLink:hover, a.threadAuthorLink:hover {text-decoration:none; color:#0099FF;}
a.forum:active, a.lastPostUserLink:active, a.forumLastPostLink:active, a.threadAuthorLink:active {text-decoration:none; color:#E4FAFD;}
/* -------------------- */

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

/* 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:#222226;padding-right:10px;font-size:7pt;}
.switches {background:#2B2B2B;}
.switch {background:#222226;width:15px;font-size:7pt;}
.switchActive {background:#747474;font-weight:bold;color:#E4FAFD;width:15px}
a.switchDigit:link,a.switchBack:link,a.switchNext:link {text-decoration:none; color:#E4FAFD;}
a.switchDigit:visited,a.switchBack:visited,a.switchNext:visited {text-decoration:none; color:#E4FAFD;}
a.switchDigit:hover,a.switchBack:hover,a.switchNext:hover {text-decoration:none; color:#FFFFFF;}
a.switchDigit:active,a.switchBack:active,a.switchNext:active {text-decoration:none; color:#E4FAFD;}
/* ------------------- */

/* forum Threads Style */
.threadNametd,.threadAuthTd,.threadLastPostTd {padding:2px;padding:2px;background:#222226}
.threadIcoTd,.threadPostTd,.threadViewTd {padding:2px;background:url('/.s/t/955/25.png') top repeat-x #000000}
.threadLastPostTd {padding:2px;font-size:7pt;}
.threadDescr {color:#60606B;font-size:7pt;}
.threadNoticeLink {font-weight:bold;}
.threadsType {padding:2px;background:#747474;height:20px;font-weight:bold;font-size:7pt;color:#000000;padding-left:40px;}
.threadsDetails {padding:2px;background:#424242;height:20px;color:#747474;color:#FFFFFF;}
.forumOnlineBar {padding:2px;background:#424242;height:20px;color:#E4FAFD;}

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

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

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

/* Posts View */
.postTable {background:#747474}
.postPoll {background:url('/.s/t/955/1.gif') #000000;text-align:center;}
.postFirst {background:url('/.s/t/955/1.gif') #000000;border-bottom:1px solid silver;}
.postRest1 {background:url('/.s/t/955/1.gif') #000000;}
.postRest2 {background:url('/.s/t/955/1.gif') #000000;}
.postSeparator {height:2px;background:#858585;}

.postTdTop {border:1px solid #929292;color:#ACACAC;height:23px;font-size:10px;background:url('/diz/15.bmp') center #1F1F52;}
.postBottom {background:url('/.s/t/955/26.gif') center;height:20px;color:#747474;}
.postUser {font-weight:bold;}
.postTdInfo {background:url('/.s/t/955/1.gif') #000000;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:#FFFFFF;}
.posttdMessage {background:#222226;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:#000000;font-size:9px;}
.quoteMessage {background:#000000;font-size:9px;}

.signatureView {font-size:7pt;}
.edited {padding-top:30px;font-size:7pt;text-align:right;color:#747474;}
.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 #96dc24;}
.newPollBlock {background: #F9F9F9;border: 1px solid #96dc24;}
.newThreadItem {padding: 0 0 0 8px; background: url('/.s/t/955/27.gif') no-repeat 0px 4px;}
.newPollItem {padding: 0 0 0 8px; background: url('/.s/t/955/27.gif') no-repeat 0px 4px;}
/* ----------------------- */

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

.codeButtons {font-size:7pt;background: #424242;color:#E4FAFD;border:1px outset #424242;}
.codeCloseAll {font-size:7pt;background: #424242;color:#E4FAFD;border:1px outset #424242;font-weight:bold;}
.postNameFl,.postDescrFl {background:#0F0F13;border:1px solid #252525;width:400px;color:#60606B;}
.postPollFl,.postQuestionFl {background:#0F0F13;border:1px solid #252525;width:400px;color:#60606B;}
.postResultFl {background:#0F0F13;border:1px solid #252525;width:50px;color:#60606B;}
.postAnswerFl {background:#0F0F13;border:1px solid #252525;width:300px;color:#60606B;}
.postTextFl {background:#0F0F13;border:1px solid #252525;width:550px;height:150px;color:#60606B;}
.postUserFl {background:#0F0F13;border:1px solid #252525;width:300px;color:#60606B;}

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

a:hover img {  
  filter: progid: DXImageTransform.Microsoft.Alpha(opacity=50);  
  -moz-opacity: 0.5; /* Mozilla 1.6 */  
  -khtml-opacity: 0.5; /* Konqueror 3.1, Safari 1.1 */  
  opacity: 0.5; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */  
  filter: alpha(opacity=50); /* IE 5.5+*/  
}

/* Site Spoiler by Bra3er*/  
a.bspoiler:link {text-decoration:none;}  
a.bspoiler:visited {text-decoration:none;}  
a.bspoiler:hover {text-decoration:none;}  
a.bspoiler:active {text-decoration:none;}  
.bspoilerdiv {height: 18px; padding-left: 3px; padding-top: 3px; background:url('/files/15.bmp'); border: 1px solid #96dc24; border-bottom: 0px;}  
.bspoilerdtw {margin: 3px; margin-top:1px;}  
/* ----------------- */

.inftop {background: url(http://cs-exe.ru/09.gif) #000000;color:#828282;height:22px;font-size:10px;border:1px solid #494949;}  
.infsubtop {padding: 5 5 5 5; border:solid 1px #484848;background: black url(http://csfilez.net.ru/design/1.1.gif);}  
.infsubtop table td li {list-style-image: url(http://csfilez.net.ru/design/8.gif);}

/* Page Selector / Start */  
.catPages1 {color:#fff;border:0px;margin-bottom:10px;margin-top:10px;}  
.catPages1 a:link,  
.catPages1 a:visited,  
.catPages1 a:hover,  
.catPages1 a:active {text-decoration:none;color: #fff;BACKGROUND-IMAGE:URL(http://jooner.3dn.ru/images/bgpages.PNG);border:1PX SOLID #96dc24; padding:2px 10px;font-size:11px;font-weight:bold;}  
.catPages1 a:hover {BACKGROUND-IMAGE:URL(http://jooner.3dn.ru/images/bp.png);color:#fff;font-weight:bold;}  
.catPages1 b {text-decoration:none;BACKGROUND-IMAGE:URL(http://jooner.3dn.ru/images/bp.png);border:1PX SOLID #999999;padding:2px 10px;color:#96dc24;font-size:11px;}  

.catPages2 {color:#EFEEEB;border:0px;margin-bottom:10px;margin-top:10px;}  
.catPages2 a:link,  
.catPages2 a:visited,  
.catPages2 a:hover,  
.catPages2 a:active {text-decoration:none;color: #0099FF;background:#F9F9F9;padding:3px 10px;font-size:11px;font-weight:bold;}  
.catPages2 a:hover {background:#6B82A4;color:#FFFFFF;font-weight:bold;}  
.catPages2 b {text-decoration:none;background:#FFFFFF;padding:3px 10px;color:#ccc;font-size:11px;}  

/* Page Selector Style / End */

.inftop {background: url(http://cs-exe.ru/files3/099.gif) #000000;color:#0099FF;height:22px;font-size:11px;border:1px solid #96dc24;}  
.infsubtop {padding: 5 5 5 5; border:solid 1px #96dc24;background: black url(http://cs-exe.ru/files3/1.1.gif);}  
.infsubtop table td li {list-style-image: url(http://cs-exe.ru/files3/8.gif);}

/* === Tэг HIDE === */  
  .UhideBlockA {  
  color: #757575;  
  background-color: #f2f2f2;  
  border: 1px dotted #bebebe;  
  padding: 5px;  
  }  
  /* ================ */
/* ====== forum End ====== */
.bBlokST8 {padding:5px;background:url('') #000000;border:1px solid #4c4c4c;}?
 
antisept Дата: Четверг, 24.06.2010, 17:05 | Сообщение # 2
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
danger9393, я не вижу полоски на твоем сайте: http://i061.radikal.ru/1006/5c/8d55418ccd34.png

Можешь попробывать красное заменить на 20, а синее - на 0.

Quote
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="21" style="border:1px solid #FFFFFF;background:url('/diz/9.gif');">
$GLOBAL_GORMENU$
</TD></TR></TBODY>
<style type="text/css" media="all">
@import url(http://fr3d00m-team.clan.su/ccs/menu.css);
</style>

$GLOBAL_GORMENU$
</TD></TR></TBODY>
<style type="text/css" media="all">
@import url(http://fr3d00m-team.clan.su/ccs/menu.css);
</style>

<style>
/* hint menu */
.hint
{
background-color:#3d3d3d;
line-height:10px;
color:white;
font-family:verdana,arial,helvetica;
font-size:8pt;
width:auto;
border-top:1px solid white;
border-right:1px solid white;
border-bottom:1px solid white;
border-left:1px solid white;
margin:1px;
padding:8px;
position:absolute;
visibility:hidden;
}
/* ---------------- */
</style>

<script>
//Hint Start
// CLASS : MW_System_Load
// Init
function MW_System_Load(){
this.wib = screen.width;
this.heb = screen.height;
this.documes = (document.getElementById || document.createElement || document.getElementsByTagName) ? true : false;
this.objects = window.addEventListener || window.attachEvent ? window : document.addEventListener ? document : null;
this.types = 'load';
}
MW_System_Load.prototype.addsevent = function(func){
if(this.objects.addEventListener){
this.objects.addEventListener(this.types,func,false);
return true;
} else if (this.objects.attachEvent){
this.objects.attachEvent("on" + this.types,func);
} else {
return false;
}
}
MW_System_Load.prototype.browser = function(){
this.ver = navigator.appVersion;
this.agent = navigator.userAgent.toLowerCase();
this.dom = document.getElementById ? 1:0;
this.all = document.all ? 1:0;
this.ie5 = (this.ver.indexOf("MSIE 5")>-1 && this.dom) ? 1:0;
this.ie6 = (this.ver.indexOf("MSIE 6")>-1 && this.dom) ? 1:0;
this.ie4 = (document.all && !this.dom) ? 1:0;
this.ie = this.ie4 || this.ie5 || this.ie6;
this.opera = this.agent.indexOf("opera")>-1;
this.gecko = (this.agent.indexOf("gecko")!=-1) ? 1:0;
this.bw = (this.ie || this.opera || this.gecko);
return this;
}
MW_System_Load.prototype.findobj = function(obj){
this.parent = window.document;
if(this.parent[obj]){ return this.parent[obj]; }
if(this.parent.all && this.parent.all[obj]){ return this.parent.all[obj]; }
if(this.parent.layers && this.parent.layers[obj]){ return this.parent.layers[obj]; }
if(this.parent.getElementById && this.parent.getElementById(obj)){ return this.parent.getElementById(obj); }
return null;
}
var MW = new MW_System_Load();
function MW_System_Hint(){}
MW_System_Hint.prototype.show = function(obj,str){
var hint = MW.findobj('hint');
if(!obj){ return; }
if(!MW.documes){ return; }
if(!hint){ return; }
hint.className = 'hint';
hint.style.left = 15;
hint.style.top = 50;

obj.onmouseout = function(advance){
hint.style.width = '';
hint.style.visibility = 'hidden';
if(hint.firstChild) hint.removeChild(hint.firstChild);
hint.appendChild(document.createTextNode(str));
};
obj.onmousemove = function(advance){
//str = str.replace(/</g,"<");
//str = str.replace(/>/g,">");
hint.style.width = '';
hint.innerHTML = str;
vc = document.getElementsByTagName((document.compatMode && document.compatMode=="CSS1Compat") ? "HTML":"BODY")[0];
x = window.event ? event.clientX + vc.scrollLeft : advance.pageX;
y = window.event ? event.clientY + vc.scrollTop : advance.pageY;
vcwidth = vc.clientWidth ? vc.clientWidth + vc.scrollLeft : window.innerWidth + window.pageXOffset;
vcheight = vc.innerHeight ? window.innerHeight + window.pageYOffset : vc.clientHeight + vc.scrollTop;
if(hint.offsetWidth>500){ hint.style.width = '200'; }
if((x + hint.offsetWidth + 15) > vcwidth){
hint.style.left = x - hint.offsetWidth - 4;
} else {
hint.style.left = x + 15;
}
if((y + hint.offsetHeight + 19) > vcheight){
hint.style.top = y - hint.offsetHeight;
} else {
hint.style.top = y + 25;
}
//if(typeof(hint.style.MozOpacity)!="undefined"){
hint.style.opacity = '.91';
hint.style.filter = "alpha(opacity:91)";
//}
hint.style.visibility = 'visible';
};
}
MW_System_Hint.prototype.initialize = function(){
var hint = document.createElement("DIV");
hint.setAttribute('id','hint');
document.getElementsByTagName('body')[0].appendChild(hint);
hint.style.visibility = 'hidden';
var hintmarker = ['a','img','img','input','span','div','textarea'];
var textmarker = ['title','alt','title','title','title','title','title'];
var lenmarker = hintmarker.length;
for(var i=0; i<lenmarker; i++) {
atr = document.getElementsByTagName(hintmarker[i]);
for(var j=0; j<atr.length; j++)
if(viewhint=atr[j].getAttribute(textmarker[i])){
atr[j].removeAttribute(textmarker[i]);
HINT.show(atr[j],viewhint);
}
}
}
var HINT = new MW_System_Hint();
if(MW.objects){ MW.addsevent(HINT.initialize); }
//Hint End
</script>
<img id="mylogo" src="/img/0cf1ddc057de.gif" />
<style type="text/css">
#mylogo {width: 100%; margin: 0 0 0 0;}
</style>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="23" style="border:1px solid #FFFFFF;background:url('http://marvad-rap.ucoz.ru/img/d29ccde4e360.jpg');">
<tr>
<td width="50%" align="left" style="font-size:10px;padding-left:10px;"><div class="navig"><a href="$HOME_PAGE_LINK$" title="Главная">Главная</a> | <a href="$PERSONAL_PAGE_LINK$" title="Мой профиль">Мой профиль</a> | <a href="$LOGOUT_LINK$" title="Выход">Выход</a><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?><?else?> | <a href="$REGISTER_LINK$" title="Регистрация">Регистрация</a><?endif?><?endif?><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?> <?else?> | <a href="$LOGIN_LINK$" title="Вход">Вход</a><?endif?><?endif?></div></td>
<td width="50%" align="right" style="font-size:10px;padding-right:10px;"><div class="navig"><?if($USERS_ON$)?><?if($USER_LOGGED_IN$)?><b>Вы вошли как</font> <a href="$PERSONAL_PAGE_LINK$" title="Мой профиль">$USERNAME$</a> | Группа "<u>$USER_GROUP$</u>" | </b><a href="$RSS_LINK$" title="RSS">RSS</a><?else?>Приветствую Вас <b>$USERNAME$</b><?endif?><?endif?></td>
</tr>
</table>



Если я долго не выполняю обещаний, напомните мне в ЛС. Скорее всего, я просто забыл.

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
  • Страница 1 из 1
  • 1
Поиск: