Display Article Titles?

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
tinmanchris
Rank 0
Rank 0
Posts: 3
Joined: November 6th, 2007, 1:35 pm

Display Article Titles?

Post by tinmanchris »

When you create a page called "Do Dee I love Bumble Bees", GuMax doesn't create that auto title. Is there an easy way to turn it on/off? I can see why I'd like to have it off at time, but since I have sooo many articles, it would be nice to keep it on.

Thanks bud! :geek:
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Display Article Titles?

Post by Paul »

Open file gumax_template.css, and then find this section:

Code: Select all

#content .firstHeading
{
    font-size: 150%;
    color: #aaa;
    font-weight: bolder;
    padding: 1em 0 0 0;    /* position of the title */
    margin: 0;
    border: none;    /* No border for page title */
    text-transform: capitalize;
    display: none; /* disable papge title */
}
remove this line:

Code: Select all

display: none; /* disable papge title */
It will show the page title.
Post Reply