• Resolved itacious

    (@itacious)


    Hi,
    I am using the Arclite theme, I found I liked it more if I use the WordPress blog description than putting one in the image (plus it’s better for SEO). What I want to do is change the color from an off-brown color to white. In the theme settings there is an example that says to decrease the font size use #pagetitle{font-size:75%;} which works, but when I try #pagetitle{color:#fff!important;} nothing happens.

    Here is the site to see it for yourself: http://babbies.org/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I assume you mean this one: #pagetitle h4

    Peter

    Thread Starter itacious

    (@itacious)

    After looking in the style.css file I found:

    #pagetitle h4{
    float: left;
    border-left: 1px solid #8e7762;
    padding: .6em 0 .6em .8em;
    margin-left: 1em;
    color: #e9e2c9;
    }

    So, yes it is H4.

    PS: I didn’t properly thank you for helping me in the other thread, I will include that code in my theme file and see how it works out.

    Thread Starter itacious

    (@itacious)

    I fixed it by taking the above code, modifying it, and putting it in the custom CSS box:

    #pagetitle h4{
    border-left: 1px solid #fff !important;
    color: #fff !important;
    }

    Thanks for the help anyway!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing blog description color.’ is closed to new replies.