Forum moderator: bigblog  
uCoz Community » For Webmasters » Design Customization » Everything about design #878 goes here! (Design, Template 878)
Everything about design #878 goes here!
Animorph
Posts: 2856
Reputation: 189

Message # 106 | 7:47 PM
Firebox1, no you won't why would i do that ? PM me
To busy building a passive income online ;)
Dimitrias
Posts: 18
Reputation: 0

Message # 107 | 7:24 PM
Is there any way to stop this design from auto-adjusting to the screen?
Text looks horrible in my opinion on wide screens, but the layout is awesome, help?
Natashko
Posts: 3366
Reputation: 171

Message # 108 | 9:41 AM
Dimitrias, Find this in each template of CP->Design->Design management (templates):
Code
<table width="94%" cellspacing="0" cellpadding="0" border="0" align="center">
and change it. There are 2 possible variants:
1)
Code
<table width="94%" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width: 1200px;">

The design will stretch up to 1200 pixels (or whatever )value you indicate
2)
Code
<table width="94%" cellspacing="0" cellpadding="0" border="0" align="center" style="width: 1200px;">

The width will be always fixed at 1200 pixels.
To avoid changing it in each template, use Quick substitution of template parts.
-VishaL-
Posts: 48
Reputation: 1

Message # 109 | 9:58 AM
How to Remove Black Color [Check In Image]

Plz note : Original Color Code is #303030 & I change It To #0b0b0b

And i Want To Remove That Color


Natashko
Posts: 3366
Reputation: 171

Message # 110 | 10:09 AM
-VishaL-,
Quote (-VishaL-)
And i Want To Remove That Color

what do you mean by that? Do you want to remove that part totally or do you want to substitute it with smth? If you want to substitute - say what do you want it to be substituted with?
-VishaL-
Posts: 48
Reputation: 1

Message # 111 | 10:14 AM
Ya I Want To Remove That Part Totally
Natashko
Posts: 3366
Reputation: 171

Message # 112 | 10:20 AM
-VishaL-, do you want to remove banners as well??
-VishaL-
Posts: 48
Reputation: 1

Message # 113 | 10:25 AM
No I Want To Remove Only That black Color
Natashko
Posts: 3366
Reputation: 171

Message # 114 | 10:50 AM
-VishaL-, but it needs to be substituted with smth, you can't just remove it!!! Please, be specific. Provide a screenshot of how your website should look.
-VishaL-
Posts: 48
Reputation: 1

Message # 115 | 11:05 AM
After Remove That Black Color My Website Look Like This way

============================

And Here Is The CSS code of top Part of Website
Default 878 Theme Code

/* General Style */
body {background:#303030;padding:0px;margin:0px;}
#contanier {background:url('/.s/t/878/3.gif') repeat-x #303030;}
#topBlock {background:url('/.s/t/878/4.jpg') top center no-repeat;height:243px;}
#topTable {height:243px;width:1000px;margin-left:auto;margin-right:auto;}
.dataBar {height:40px;font-size:7pt;padding:5px;}
.logoBar {height:183px;}
.logoBar h1 {color:#FFFFFF;margin-left:10%;font-size:24pt;}
.navBar {height:20px;text-align:center;}
#centerBlock {background:url('/.s/t/878/1.jpg') top center no-repeat #303030;padding-top:20px;}
.column {width:220px;padding:5px;}
.boxTable {width:220px;margin-bottom:10px;}
.boxTitle {height:38px;background:url('/.s/t/878/5.gif') no-repeat;color:#FFFFFF;text-align:center;}
*html .boxContent {padding:10px;background:#272727;opacity:.50;filter: alpha(opacity=50); -moz-opacity: 0.5;}
*html .boxContent div.boxText {position:relative;opacity:1.0;filter: alpha(opacity=100); -moz-opacity: 1.0;}
.boxContent {padding:10px;background:url('/.s/t/878/6.png');}
#footer {background:#000000;}

And

My modify CSS Theme Code

/* General Style */
body {background:#0b0b0b;padding:0px;margin:0px;}
#page{background:url('http://www.cybercrack.tk/back_1.jpg') center 0 no-repeat fixed;}
#topBlock {background:url('http://www.cybercrack.tk/header.jpg') top center no-repeat;height:243px;}
#topTable {height:243px;width:1000px;margin-left:auto;margin-right:auto;}
.dataBar {height:40px;font-size:7pt;padding:5px;}
.logoBar {height:183px;}
.logoBar h1 {color:#FFFFFF;margin-left:10%;font-size:24pt;}
.navBar {height:20px;text-align:center;}
#centerBlock {background:url('http://www.cybercrack.tk/back_1.jpg') center 0 no-repeat fixed;} #0b0b0b;padding-top:20px;}
.column {width:220px;padding:5px;}
.boxTable {width:220px;margin-bottom:10px;}
.boxTitle {height:38px;background:url('http://www.cybercrack.tk/plate.png') no-repeat;color:#FFFFFF;text-align:center;}
*html .boxContent {padding:10px;background:#272727;opacity:.50;filter: alpha(opacity=50); -moz-opacity: 0.5;}
*html .boxContent div.boxText {position:relative;opacity:1.0;filter: alpha(opacity=100); -moz-opacity: 1.0;}
.boxContent {padding:10px;background:url('/.s/t/878/6.png');}
#footer {background:#000000;}

The Green Color Code That I Want To remove From My website


Post edited by -VishaL- - Tuesday, 2011-04-12, 11:33 AM
Natashko
Posts: 3366
Reputation: 171

Message # 116 | 12:34 PM
-VishaL-, you need to insert the code of your add banners inside this block
Code
<div id="centerBlock">
and not outside of it.
-VishaL-
Posts: 48
Reputation: 1

Message # 117 | 2:18 PM
Thanx Problem Solved

================

Can U Also tell me how to Remove Footar Black Color

And

Thread Name Text Color is black
Thats Why i Can't See that text Correctly Its In Black Color & I Want To Change that Text Into Another Color Like White Or Purple


Post edited by -VishaL- - Tuesday, 2011-04-12, 2:47 PM
Natashko
Posts: 3366
Reputation: 171

Message # 118 | 2:56 PM
-VishaL-, go to CP->Design->Design management(template)->Bottom part of the website->delete the
Code
<br>
tag in the very beginning->Save
Animorph
Posts: 2856
Reputation: 189

Message # 119 | 3:00 PM
Quote (-VishaL-)
Thread Name Text Color is black
Thats Why i Can't See that text Correctly Its In Black Color & I Want To Change that Text Into Another Color Like White Or Purple

go to CP ---> Design ---> Design management (CSS) ---> Find:

Code
.postNameFl,.postDescrFl {background:#2C2C2C;border:1px solid #555555;width:400px}

Replace by:

Code
.postNameFl,.postDescrFl {background:#2C2C2C;border:1px solid #555555;width:400px;color:#ffffff;}

i could not see allot in your website because of the popups but lucky for you this goes for almost every design in uCoz


To busy building a passive income online ;)
-VishaL-
Posts: 48
Reputation: 1

Message # 120 | 3:30 PM
Thanx Natashko Its Works...

&

Animorph I Replace That Code But Its Not works..Still Same Color


uCoz Community » For Webmasters » Design Customization » Everything about design #878 goes here! (Design, Template 878)
Search: