I made the mistake of trying to change my blog all by myself (something I've been wanting to do for about a year now!) and I finally changed the background but now the text is all off-centered and my titles are still orange! I am SO retarded when it comes to computers. Somebody please help me fix this.
2 comments:
your main problem is the container that is holding all the content of your site has no fixed width. the problem is in your stylesheet. theres a div called outer-wrapper and the width needs to be set to something like 660px.
I know this may sound like mumbo jumbo but it would fix the problem. If you can't figure it out let me know and I can fix it.
Actually i just found the real problem, and it is in the stylesheet. It is already setting the width to 660px but whats happening is in the line above that there is a semicolon that is missing so its error out the next line which happens to be the width. So heres what you do. Look for this line of code:
#outer-wrapper {
background-image:url
width: 660px;
margin:0 auto;
padding:10px;
text-align:left;
font: normal normal 100% Georgia, Serif;
}
and RIGHT after background-image:url add a ;
so it'll be:
#outer-wrapper {
background-image:url;
width: 660px;
margin:0 auto;
padding:10px;
text-align:left;
font: normal normal 100% Georgia, Serif;
}
problem solved.
Post a Comment