| Author |
Message
|
| Rose |
Posted: Wed Nov 29, 2006 2:09 pm Post subject: |
|
|
 Site Administrator

Joined: Sep 06, 2006 Posts: 1920 Location: Canada
|
|
| Back to top |
|
 |
Sponsored Ads
|
 |
| MouseExtra |
Posted: Wed Nov 29, 2006 2:19 pm Post subject: |
|
|
 Primary member

Joined: Nov 28, 2006 Posts: 40
|
| OK, that solved the problem with the font on the sidebar. I'm still seeing it flash in maroon or brown first, however. That has to be a different problem then the font, wouldn't you think? |
|
| Back to top |
|
 |
| Rose |
Posted: Wed Nov 29, 2006 2:25 pm Post subject: |
|
|
 Site Administrator

Joined: Sep 06, 2006 Posts: 1920 Location: Canada
|
|
| Back to top |
|
 |
| MouseExtra |
Posted: Wed Nov 29, 2006 2:28 pm Post subject: |
|
|
 Primary member

Joined: Nov 28, 2006 Posts: 40
|
| Any idea what I could have changed to cause that? I changed some font colors, but nothing else seemed to be the cause. Is this something that can be identified, ir a hunt a peck type deal... |
|
| Back to top |
|
 |
| Shawn |
Posted: Wed Nov 29, 2006 2:32 pm Post subject: |
|
|
 Site Developer

Joined: Sep 06, 2006 Posts: 327 Location: Canada
|
Hello David
You must of changed this line in the CSS code by mistake!
| Code: |
/* Begin Typography & Colors */
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #330000 url('images/kubrickbgcolor.jpg');
color: black;
text-align: center;
} |
If you want it to be white like the rest of your site change it to this
| Code: |
/* Begin Typography & Colors */
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
background: #FFFFFF url('images/kubrickbgcolor.jpg');
color: black;
text-align: center;
}
|
If you want to use another color just change the following code
| Code: | | background: #YOURCOLORPREFRENCE url('images/kubrickbgcolor.jpg'); |
Tip Notice this body{ tag - that means these are body and main background attributes for your page! This controls the main size of fonts background color for the entire page!
Shawn _________________ | Affordable Web-Hosting | FREE Blog Directory |
PC Windows Tips |
Ultra Game Play |
|
| Back to top |
|
 |
| MouseExtra |
Posted: Wed Nov 29, 2006 3:40 pm Post subject: |
|
|
 Primary member

Joined: Nov 28, 2006 Posts: 40
|
Great!!!! Fixed. You guys at Vision this Hosting are the best...oops shameless plug number 2! Vision this hosting |
|
| Back to top |
|
 |
| MouseExtra |
Posted: Wed Nov 29, 2006 3:41 pm Post subject: |
|
|
 Primary member

Joined: Nov 28, 2006 Posts: 40
|
| One last question, is there a good source that anyone knows of that helps understand the Stylesheet? And key to what it all means? |
|
| Back to top |
|
 |
| Shawn |
Posted: Wed Nov 29, 2006 3:45 pm Post subject: |
|
|
 Site Developer

Joined: Sep 06, 2006 Posts: 327 Location: Canada
|
|
| Back to top |
|
 |
|
|