Click to See Complete Forum and Search --> : Variances with CSS text
amyinvegas
01-09-2008, 12:38 PM
Hi,
I'm trying to figure out why some of the blog posts have larger text and even a different font here:
http://www.worklessmakemore.com/blog/
I can't seem to find where/what is controlling that.
Any help is appreciated!
Thanks,
Amy
dtm32236
01-09-2008, 12:48 PM
body {
background-image: url(graphics/mainbg.gif);
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000
change it to font-size:1em; for the default font size.
dtm32236
01-09-2008, 12:49 PM
...that's on line 35 of the html
amyinvegas
01-09-2008, 12:58 PM
Thanks for the quick help!
Unfortunately, I don't even know what file to open to change this part of the CSS.....? I am use to going in and opening up the style.css to change the body..... but this seems to be inline somewhere.
Do you know which file I need to open (this is a WP blog that someone else created).
Thanks!
dtm32236
01-09-2008, 02:39 PM
it's in http://www.worklessmakemore.com/blog/index.html (or index.php/asp/cfm/etc..., whatever it is)
amyinvegas
01-09-2008, 02:46 PM
Well, we're definitely getting closer! Thanks for the help so far.
http://www.worklessmakemore.com/blog/
However, the last three blog posts are still a smaller font size (starting with the post "Vacations a Thing of the Past?")
Any ideas on that?
dtm32236
01-09-2008, 02:54 PM
it's probably here:
.style6 {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
}
.style8 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
a:link {
color: #003366;
}
a:visited {
color: #003366;
}
a:hover { color: #FF0000; text-decoration: underline; }
.style1 { font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
}
.style3 { font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
font-weight: bold;
font-style: italic;
color: #003366;
}