i would like to change the default font size (letter size) of my homepage, but i'm not sure which part of the css file i should edit. As most of you are experts in that, would you mind to give me a hint ?
xqTpx wrote:i would like to change the default font size (letter size) of my homepage, but i'm not sure which part of the css file i should edit. As most of you are experts in that, would you mind to give me a hint ?
/template/YOURTEMPLATE/style.css
Currently, your stylesheet has font-size: small; for body. If you want to increase the overall font size, change it to font-size: normal;.
xqTpx wrote:Even if the page is in german language, don't you think that the letters are a bit to small ?
Nope, not in my Firefox. Even if so, I can still increase it using [Ctrl] + [+].
body {
margin: 20px 0;
background: #FFFFFF;
font: normal small "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #666666;
}
This is in style.css but changing font only to normal will affect the navigation bar in the title of the page, but not the body ... ?
Any other hints ?
xqTpx wrote:
body {
margin: 20px 0;
background: #FFFFFF;
font: normal small "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #666666;
}
This is in style.css but changing font only to normal will affect the navigation bar in the title of the page, but not the body ... ?
Any other hints ?
body {
margin: 20px 0;
background: #fff;
color: #666;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: normal;
}
If that doesn't do what you expect, you'll have to work your way through your stylesheet and look for font-sizes. Or you could tell us what you still want to have changed. I'll see what I can do