changing the font size

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
zangief

changing the font size

Post 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?
zangief

Re: changing the font size

Post 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?
cyberman

Re: changing the font size

Post by cyberman »

It can be done via Stylesheets for every html tag ...
zangief

Re: changing the font size

Post 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?
zangief

Re: changing the font size

Post 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.
cyberman

Re: changing the font size

Post by cyberman »

Please look at admin panel, menu layout > Stylesheets. There you can change all used stylesheets
Locked

Return to “CMSMS Core”