I'm trying to modify the Pushbutton theme to suit my own needs.

I have successfully changed the background, header texts yada yada yada but I can't find where to change the color for the posts titles, or the post details (ie posed on 26/7/2005 by aaron). I've searched throughout the style.css

I know it can be done. It’s been done at twit.tv

Can someone please help?

Cheers
Aaron

Comments

heine’s picture

When in doubt, viewing the page source usually helps.

The nodetitle (at least on ustilago.org) is a

<h1 class="title">

You can either change h1 altogether or introduce

h1.title {
 color: whatever;
}

in the stylesheet.

Hope this helps.
--
Ustilago.org

heine’s picture

Sorry,

Saw that you also wanted to know about the post details.

From the page source (ustilago.org with modified pushbutton)

<span class="submitted">Submitted by <a href="/user/6" title="View user profile.">user</a> on February 28, 2005 - 16:03.</span>

Find/introduce:

.submitted {
  color: whatever;
}

--
Tips for posting to the forums