CSS link to normal text help.

Messages
740
Reaction score
1
Points
18
Hey all,

I got a template for my Word Press blog - http://www.ultrawayuk.net. You can see the title of the post. Eg: "Millwall vs Aldershot Town - 29 Nov 08" then after it is actually has "- February 12, 2009 by The Rising Phoenix" (which you obviously can't see) - that's part of the problem.

Can you please advise me either; what can I change my css or how I can change the coding to allow that text to become viewable.

HTML:
<div class="post-title">
<strong><a id="post-27" href="http://www.ultrawayuk.net/200902/millwall-vs-aldershot-town-29-nov-08.html" rel="bookmark" title=" Millwall vs Aldershot Town - 29 Nov 08">Millwall vs Aldershot Town - 29 Nov 08</a></strong> - 
                      February 12, 2009 by 
                             The Rising Phoenix</div>

Code:
div.post-title
 {
 margin:0px;
 padding:4px;
 height:16px;
 background-image:url(images/title-header.gif);
 }

Code:
p{
margin:0px;
     }
h1,h2,h3,h4,h5,h6{
color:#FFFFFF;
margin:0px;
padding:0px;
font-size:11px;
     }
 

sourfacedcyclop

New Member
Messages
221
Reaction score
0
Points
0
The only thing I could think of would be to use

Code:
div.post-title
 {
 margin:0px;
 padding:4px;
 height:16px;
 background-image:url(images/title-header.gif);
 color:#fff;
 }

I'm not sure if that would work though.... the only other think I could think of would be to give the date a seperate div. Sorry, I'm not more help, I'm not to familiar with Wordpress
 
Top