View Single Post
Old 03-03-2020, 09:05 AM   #2
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Welcome to MR Jennifer!

You don't need to put a <p> tag within an <h2> tag. One tag is saying that you are creating a header, the other is saying you are creating a paragraph...you can't do both.

For a quick answer, simply change your headers to something like this:
Code:
<h2>6 <span>The Real Enterprise</span></h2>
and include something like this in your CSS file (of course you can change this however you wish to make the header look any way you want):
Code:
h2 {font-weight:bold; font-size:1.3em; text-align:center; font-family:serif}
h2 span {display:block; font-size:.8em; margin-top:.5em; font-variant:small-caps}
The longer answer is spend a little bit of time reading the html/css tutorials available here on MR's wiki, or at W3Schools HTML and CSS website. That will help you out tons.
Turtle91 is offline   Reply With Quote