I want to use <h1> tags in my header but I do not want the text to be huge like the default <h1>.
I have tried something like:
h1 {
font-size: 11;
}
Also whenever I have h1 I dont know why but the content does not remain in one line
Say
This is something that should not be in h1 and<h1> this should be in h1</h1>
Outputs
This is something that should not be in h1 and
this should be in h1
But I want it to be
This is something that should not be in h1 and this should be in h1
|
Go4Expert Founder
|
![]() |
| 17Jul2009,21:24 | #2 |
|
It should work
h1 { font-size: 11pt; } Just add pt Also for the line break problem add display:inline; h1 { font-size: 11pt; display:inline;} |
|
Banned
|
|
| 18Jul2009,08:41 | #3 |
|
h1 { font-size: 11pt; display:inline;}
Seems its works for me....what about you Safari ? |
|
Ambitious contributor
|
|
| 18Jul2009,12:16 | #4 |
|
Yeah it worked as expected
|
|
Invasive contributor
|
![]() |
| 18Jul2009,21:30 | #5 |
|
Go4Expert Founder
|
![]() |
| 18Jul2009,21:36 | #6 |



