На форуме InfoScript.ru вы можете: задать вопросы по php, вопросы по javascript, вопросы по системе uCoz, заказать графику для вашего сайта и просто пообщаться с хорошими людьми
  • Страница 1 из 2
  • 1
  • 2
  • »
Модератор форума: frenkmalcov  
Смена цвета дизайна.
Zver Дата: Среда, 24.02.2010, 14:58 | Сообщение # 1
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
Всем привет, хочу поменять цвет дизайна, без понятия как...
цвет хочу тёмный металик.


野兽女性人格
выыыПУСК!

 
antisept Дата: Среда, 24.02.2010, 16:48 | Сообщение # 2
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Quote (Zver)
хочу поменять цвет дизайна

напиши конкретно, где именно?


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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Среда, 24.02.2010, 17:56 | Сообщение # 3
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
Ну на моём сайте, вообще везде, что бы оффнуть чёрный свет.
То есть форум, главная, и т.п. и т.д.


野兽女性人格
выыыПУСК!

 
antisept Дата: Среда, 24.02.2010, 18:27 | Сообщение # 4
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Quote (Zver)
оффнуть чёрный свет

офнуть не долго (я имею ввиду фона страниц и блоков). Мне кажеться, шрифт будет плохо читаться после смены фона.


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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Среда, 24.02.2010, 18:40 | Сообщение # 5
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
antisept, Ммм, что-то хочешь предложить? Можно сменить и цвет шрифта?

野兽女性人格
выыыПУСК!

 
antisept Дата: Среда, 24.02.2010, 18:45 | Сообщение # 6
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Quote (Zver)
Можно сменить и цвет шрифта?

Это займет гораздо больше времени. Вообщем скинь сюда код страниц сайта (я тебе покажу, где фон менять).


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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Среда, 24.02.2010, 18:52 | Сообщение # 7
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
kk

Code
<html>
<head>
   
   
<style>  
/* hint menu */  
.hint  
{  
background-color:#ff731b;  
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>

<title>Counter-Strike | Играть в CS online | $SITE_NAME$ - $MODULE_NAME$</title>
<meta name="description" content="На нашем клан-сайте вы сможете обсудить counter-strike, играть в counter-strike, скачать полезные программы, забить clan war нашему клану">
<meta name="keywords" content="Скачать CS, играть в CS online, скачать файлы, counter-strike, контра, контра 1.6, играть в контру с другим кланом, скачать контру, забить clan war">
<link type="text/css" rel="StyleSheet" href="http://psycho-pro.ucoz.net/_st/my.css" />
</head><body style="margin: 0px; padding: 0px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr><td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll right center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="right" width="0%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
<td style="border-bottom: 1px solid rgb(73, 73, 73);" valign="top" width="100%">

$GLOBAL_AHEADER$

<table style="border-top: 1px solid rgb(73, 73, 73); border-bottom: 1px solid rgb(73, 73, 73);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(26, 26, 26); background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" valign="top">

<!-- <middle> -->
<table border="0" cellpadding="0" cellspacing="2" width="100%">
<tbody><tr>
<td style="width: 180px;" valign="top">
$GLOBAL_CLEFTER$
</td>

<td valign="top">
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><div align="center"></a></div></td></tr></tbody></table>
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><!-- <body> -->$CONTENT$<!-- </body> --></td></tr></tbody></table>
</td>

<td style="width: 180px;" valign="top">
$GLOBAL_DRIGHTER$
</td>
</tr>
</tbody></table>
<!-- </middle> -->
</td></tr></tbody></table>
$GLOBAL_BFOOTER$
</td>
<td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="left" width="5%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
</tr></tbody></table>

</body>
</html>


野兽女性人格
выыыПУСК!

 
antisept Дата: Четверг, 25.02.2010, 13:58 | Сообщение # 8
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Измени синее на нужный цвет.

Quote
<html>
<head>


<style>
/* hint menu */
.hint
{
background-color:#ff731b;
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>

<title>Counter-Strike | Играть в CS online | $SITE_NAME$ - $MODULE_NAME$</title>
<meta name="description" content="На нашем клан-сайте вы сможете обсудить counter-strike, играть в counter-strike, скачать полезные программы, забить clan war нашему клану">
<meta name="keywords" content="Скачать CS, играть в CS online, скачать файлы, counter-strike, контра, контра 1.6, играть в контру с другим кланом, скачать контру, забить clan war">
<link type="text/css" rel="StyleSheet" href="http://psycho-pro.ucoz.net/_st/my.css" />
</head><body style="margin: 0px; padding: 0px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr><td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll right center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="right" width="0%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
<td style="border-bottom: 1px solid rgb(73, 73, 73);" valign="top" width="100%">

$GLOBAL_AHEADER$

<table style="border-top: 1px solid rgb(73, 73, 73); border-bottom: 1px solid rgb(73, 73, 73);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(26, 26, 26); background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" valign="top">

<!-- <middle> -->
<table border="0" cellpadding="0" cellspacing="2" width="100%">
<tbody><tr>
<td style="width: 180px;" valign="top">
$GLOBAL_CLEFTER$
</td>

<td valign="top">
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><div align="center"></a></div></td></tr></tbody></table>
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><!-- <body> -->$CONTENT$<!-- </body> --></td></tr></tbody></table>
</td>

<td style="width: 180px;" valign="top">
$GLOBAL_DRIGHTER$
</td>
</tr>
</tbody></table>
<!-- </middle> -->
</td></tr></tbody></table>
$GLOBAL_BFOOTER$
</td>
<td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="left" width="5%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
</tr></tbody></table>

</body>
</html>



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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Четверг, 25.02.2010, 14:08 | Сообщение # 9
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
Изминилось только горизонт. меню, и то на цвет не тот который я ввёл

野兽女性人格
выыыПУСК!

 
antisept Дата: Четверг, 25.02.2010, 14:53 | Сообщение # 10
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
тогда это:

Quote
<html>
<head>

<style>
/* hint menu */
.hint
{
background-color:#ff731b;
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>

<title>Counter-Strike | Играть в CS online | $SITE_NAME$ - $MODULE_NAME$</title>
<meta name="description" content="На нашем клан-сайте вы сможете обсудить counter-strike, играть в counter-strike, скачать полезные программы, забить clan war нашему клану">
<meta name="keywords" content="Скачать CS, играть в CS online, скачать файлы, counter-strike, контра, контра 1.6, играть в контру с другим кланом, скачать контру, забить clan war">
<link type="text/css" rel="StyleSheet" href="http://psycho-pro.ucoz.net/_st/my.css" />
</head><body style="margin: 0px; padding: 0px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr><td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll right center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="right" width="0%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
<td style="border-bottom: 1px solid rgb(73, 73, 73);" valign="top" width="100%">

$GLOBAL_AHEADER$

<table style="border-top: 1px solid rgb(73, 73, 73); border-bottom: 1px solid rgb(73, 73, 73);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(26, 26, 26); background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" valign="top">

<!-- <middle> -->
<table border="0" cellpadding="0" cellspacing="2" width="100%">
<tbody><tr>
<td style="width: 180px;" valign="top">
$GLOBAL_CLEFTER$
</td>

<td valign="top">
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><div align="center"></a></div></td></tr></tbody></table>
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><!-- <body> -->$CONTENT$<!-- </body> --></td></tr></tbody></table>
</td>

<td style="width: 180px;" valign="top">
$GLOBAL_DRIGHTER$
</td>
</tr>
</tbody></table>
<!-- </middle> -->
</td></tr></tbody></table>
$GLOBAL_BFOOTER$
</td>
<td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="left" width="5%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>
</tr></tbody></table>

</body>
</html>



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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Четверг, 25.02.2010, 15:41 | Сообщение # 11
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
о5 не чего, токо счас вообще не чего, и когда в файлы заходишь, косяк, с права, старый диз, уже возвращал нев диз всо ровно цвет старого ( в глоб блоке с права

野兽女性人格
выыыПУСК!

 
antisept Дата: Четверг, 25.02.2010, 15:53 | Сообщение # 12
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Zver, ты цвет неправильно вписываешь. Там нужно в RGB (три числа), а не в шестнадцатиричной.

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

Не оказываю помощь через ЛС. Все вопросы - на форум или в комментарии.
 
Zver Дата: Четверг, 25.02.2010, 17:55 | Сообщение # 13
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
Ooo, ok

野兽女性人格
выыыПУСК!

 
Zver Дата: Четверг, 25.02.2010, 18:20 | Сообщение # 14
Offline
Супер чел
Проверенные
Сообщений:477
Награды:4
Замечания:0%
Репутация
56
Перепробовал по всякому... попробуй вставить сам, я посатрю как ты, вот цвет: 698E87

野兽女性人格
выыыПУСК!

 
antisept Дата: Пятница, 26.02.2010, 07:15 | Сообщение # 15
Offline
BrainStorming
Администраторы
Сообщений:2847
Награды:51
Репутация
987
Zver, держи:

Code
<html>  
<head>  

<style>  
/* hint menu */  
.hint  
{  
background-color:#ff731b;  
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>  

<title>Counter-Strike | Играть в CS online | $SITE_NAME$ - $MODULE_NAME$</title>  
<meta name="description" content="На нашем клан-сайте вы сможете обсудить counter-strike, играть в counter-strike, скачать полезные программы, забить clan war нашему клану">  
<meta name="keywords" content="Скачать CS, играть в CS online, скачать файлы, counter-strike, контра, контра 1.6, играть в контру с другим кланом, скачать контру, забить clan war">  
<link type="text/css" rel="StyleSheet" href="http://psycho-pro.ucoz.net/_st/my.css" />  
</head><body style="margin: 0px; padding: 0px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">  

<table border="0" cellpadding="0" cellspacing="0" width="100%">  
<tbody><tr><td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll right center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="right" width="0%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>  
<td style="border-bottom: 1px solid rgb(73, 73, 73);" valign="top" width="100%">  

$GLOBAL_AHEADER$  

<table style="border-top: 1px solid rgb(73, 73, 73); border-bottom: 1px solid rgb(73, 73, 73);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(26, 26, 26); background: rgb(105, 142, 135) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" valign="top">  

<!-- <middle> -->  
<table border="0" cellpadding="0" cellspacing="2" width="100%">  
<tbody><tr>  
<td style="width: 180px;" valign="top">  
$GLOBAL_CLEFTER$  
</td>  

<td valign="top">  
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(0, 0, 0) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><div align="center"></a></div></td></tr></tbody></table>  
<table style="border: 1px solid rgb(60, 60, 60);" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="border: 1px solid rgb(38, 38, 38); padding: 10px; background: rgb(105, 142, 135) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><!-- <body> -->$CONTENT$<!-- </body> --></td></tr></tbody></table>  
</td>  

<td style="width: 180px;" valign="top">  
$GLOBAL_DRIGHTER$  
</td>  
</tr>  
</tbody></table>  
<!-- </middle> -->  
</td></tr></tbody></table>  
$GLOBAL_BFOOTER$  
</td>  
<td style="background: transparent url(http://src.ucoz.net/t/984/2.gif) repeat-y scroll left center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="left" width="5%"><img src="http://src.ucoz.net/t/984/2.gif" border="0"></td>  
</tr></tbody></table>  

</body>  
</html>


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

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