I need to show a double header centred at the top of each webpage, for example:
css code:
h2 { color: #ffffff; background-color: #00008b }
h3 { text-indent: 10px; color: #ffffff; background-color: #008080 }
page code:
<body>
<center>
<h2>Header Text 2</h2>
<h3>Header Text 3</h3>
</center>
The headers are in two different colours (blue and teal)and should look as seemless as possible. However, at the moment I have a thick white line running through the middle of the two headers separting them and I can't get rid of it.
My second problem is with text wrapping. I need to show text as:
but its coming out like this:
CSS Code:
<ul span style="text-indent: 83px; color:#008080">
<li>text,text,text,text,text,text</li>
</ul></span>
I realise the <li> indent plus 83px is the text starting position and when the text reaches the end of the page is is breaking and being treat as a <li> indent only (without the 83px). Appreciate any help available.
HEADER2
HEADER3
HEADER3
css code:
h2 { color: #ffffff; background-color: #00008b }
h3 { text-indent: 10px; color: #ffffff; background-color: #008080 }
page code:
<body>
<center>
<h2>Header Text 2</h2>
<h3>Header Text 3</h3>
</center>
The headers are in two different colours (blue and teal)and should look as seemless as possible. However, at the moment I have a thick white line running through the middle of the two headers separting them and I can't get rid of it.
My second problem is with text wrapping. I need to show text as:
text,text,text,text,text,texttext,text,text,text,text,text
text,text,text,text,text,texttext,text,text,text,text,text
text,text,text,text,text,texttext,text,text,text,text,text
but its coming out like this:
text,text,text,text,text,texttext,text,text,text,text,text
text,text,text,text,text,textCSS Code:
<ul span style="text-indent: 83px; color:#008080">
<li>text,text,text,text,text,text</li>
</ul></span>
I realise the <li> indent plus 83px is the text starting position and when the text reaches the end of the page is is breaking and being treat as a <li> indent only (without the 83px). Appreciate any help available.