Page 1 of 1

text

Posted: Tue 28. Jun 2005, 09:25
by DarkJ
why I wiew the text <h1>, <h2>, etc. more big in internet explorer than in other browser?

thank you

Posted: Tue 28. Jun 2005, 14:24
by DarkJ
there are nobody to help me? :(

Posted: Thu 30. Jun 2005, 09:29
by DarkJ
please, help me! :cry:

Posted: Thu 30. Jun 2005, 10:17
by pepe
Hi DarkJ,

please put in own classes for your H1 ... H4 into the frontend.css :idea:

Posted: Fri 8. Jul 2005, 12:58
by DarkJ
what? :shock: :?: :?: :?:

Posted: Fri 8. Jul 2005, 13:40
by pico
Hi

maybe you have different Settings in the Browsers for the Textsize.

Posted: Fri 8. Jul 2005, 13:53
by Kosse
Hi DarkJ,

pepe meant that you have to open the file frontend.css in the folder:

phpwcms_template/inc_css/frontend.css

IE and FF react differently because they have different classes (H1 H2) set as 'default', so, if u don't set your own css (in frontend.css) they will show as 'default'.

For example:

Code: Select all

/* Pepe CSS */
h1, .articleHead, .articleList_tophead {
    font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    line-height : 100%;
	margin-bottom: 5px;
	color : #3572A5;
}

h2, .articleSubHead, .articleList_topsubhead {
   font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
   font-size: 15px;
   font-weight: bold;
   color: #369; //#6D7983; //#FF0000;
   line-height: 100%;
   margin-bottom: 5px;
}

.articleSummary {
   font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
   font-size: 11px;
   text-align: normal; //justify;
   color: #000000;
   line-height: 135%;
 margin-bottom: 5px;
}

h3, .contentHead {
    font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #002040; //#6D7983;
    line-height: 110%;
	margin-bottom: 0.5em;
}

h4, .contentSubHead {
    font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    line-height: 110%;
  margin-bottom: 0.25em;
}
h5 {
    font-family: "Trebuchet MS", "Arial Narrow",  Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    line-height: 110%;
  margin-bottom: 0.25em;
}
Cheers