tags:

views:

40

answers:

2

I'd like to display something on the same line but keep the H2 tag (just so I don't have to change it in a bunch of different places). Can this be done using CSS?

+5  A: 

Try adding the CSS h2 { display: inline }.

Deniz Dogan
Damn, beat me by 2 seconds...
fredley
@fredley: The longest two seconds *of your life!*
Deniz Dogan
+4  A: 

Try:

h2 {
  display:inline;
}
fredley