View Single Post
Old 02-05-2014, 03:46 AM   #2
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,557
Karma: 19500001
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Do not use <h2> and <h3> for visual styling. Those are sectioning elements, they are supposed to be used for titles of some kind of "section". If you want something centered, in bold and larger font, just say so with CSS:

Code:
<div class="centered_bold_and_larger">whatever</div>

div.centered_bold_and_larger {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
}
Jellby is offline   Reply With Quote