Page 1 of 1
changing the font size
Posted: Tue Apr 17, 2007 6:18 am
by zangief
I'm new to CMSms and ive beensearching for the page that will enable me to change the font size, but to no avail.
How can i change the entire CMS' font size?
Re: changing the font size
Posted: Tue Apr 17, 2007 8:30 am
by zangief
is there a way to change all of it at once or do i have to change the fonts one by one? if so, how?
Re: changing the font size
Posted: Tue Apr 17, 2007 8:58 am
by cyberman
It can be done via Stylesheets for every html tag ...
Re: changing the font size
Posted: Tue Apr 17, 2007 11:18 am
by zangief
/* TEXT */
p {
font-size: 1em;
margin: 0 0 1.5em 0; /* some air around p elements */
line-height: 1.4em;
padding: 0;
}
blockquote {
border-left: 10px solid #ddd;
margin-left: 10px;
}
strong, b {
/* explicit setting for these */
font-weight: bold;
}
em, i {
/* explicit setting for these */
font-style:italic;
}
/* Wrapping text in tags. Makes CSS not validate */
code, pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
font-family: "Courier New", Courier, monospace;
font-size: 1em;
}
pre {
border: 1px solid #000; /* black border for pre blocks */
background-color: #ddd;
margin: 0 1em 1em 1em;
padding: 0.5em;
line-height: 1.5em;
font-size: 90%;
}
/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
margin: 0 0 2.5em;
}
/* END TEXT */
is this where i need to change the font size?
Re: changing the font size
Posted: Tue Apr 17, 2007 1:00 pm
by zangief
sorry for asking too much, but like they said "an ounce of prevention is better than a pound of cure". id rather be called as a total newbie than pretend to know everything then ruin everything because of it. that's why im asking even the simplest of questions, so that i wouldnt make a mistake
id really really appreciate the help. thanks.
Re: changing the font size
Posted: Tue Apr 17, 2007 2:04 pm
by cyberman
Please look at admin panel, menu layout > Stylesheets. There you can change all used stylesheets