text

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
DarkJ
Posts: 25
Joined: Sun 5. Jun 2005, 12:29
Contact:

text

Post by DarkJ »

why I wiew the text <h1>, <h2>, etc. more big in internet explorer than in other browser?

thank you
DarkJ
Posts: 25
Joined: Sun 5. Jun 2005, 12:29
Contact:

Post by DarkJ »

there are nobody to help me? :(
DarkJ
Posts: 25
Joined: Sun 5. Jun 2005, 12:29
Contact:

Post by DarkJ »

please, help me! :cry:
pepe
Posts: 3954
Joined: Mon 19. Jan 2004, 13:46

Post by pepe »

Hi DarkJ,

please put in own classes for your H1 ... H4 into the frontend.css :idea:
DarkJ
Posts: 25
Joined: Sun 5. Jun 2005, 12:29
Contact:

Post by DarkJ »

what? :shock: :?: :?: :?:
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post by pico »

Hi

maybe you have different Settings in the Browsers for the Textsize.
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
User avatar
Kosse
Posts: 1066
Joined: Thu 9. Sep 2004, 12:08
Location: Brussels, Belgium
Contact:

Post 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
Post Reply