views:

73

answers:

1

Hi, currently I am trying to make the following a button on my wordpress blog its a automatic link that gets that class whenever its posted but I just can't seem to make it work.

<div class="kpg-title">
<a href="/recentphotos/?album=Photosagain">photosagain</a>
</div>

This is the link to the CSS

Any help would be greatly appreaciated I am trying to use these buttons

A: 

There are only 2 styles in the CSS that affect the mark up. Neither of them are going to create the effect you are looking for. Check your class name.

table#kpg-albums td div.kpg-title a {
    font-weight: bold;
}

div#kpg-album-description div#kpg-title {
    font-weight: normal;

}
mmcglynn