CSS for Font Color Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    CSS for Font Color

    avatar
    Mr. Brooks
    Forumember


    Posts : 35
    Reputation : 21
    Language : English

    Solved CSS for Font Color

    Post by Mr. Brooks August 18th 2011, 7:08 am

    I want to know if there's a css code, so that if the user didn't use font color bbcode (when creating a thread or posting a reply), the default font color would be to whatever I want.

    I know I could change it in Display > Colors. But I think it affects other texts on my forums too. I only want the default font color of thread posts/replies to be changed.

    Also one more question, whenever I create a new thread, the text box, where I type the thread title blends in with the font. What's the css code to change the font color of that one?

    I've been searching for this all day, so far I only found out how to change the font color of the text_area (body) when creating a new thread, but yeah, not the title area.

    PS. I use Phpbb3
    Nera.
    Nera.
    Energetic


    Female Posts : 7078
    Reputation : 2017
    Language : English
    Location : -

    Solved Re: CSS for Font Color

    Post by Nera. August 18th 2011, 12:27 pm

    Hi Mr. Brooks,

    You basiclly want to change only post text colors?
    Try with this in CSS, add your color in it.

    Code:
    .postbody .content {
        color: red !important;
    }

    And for the topic title color this

    Code:
    .inputbox {
        color: red !important;
    }
    avatar
    Mr. Brooks
    Forumember


    Posts : 35
    Reputation : 21
    Language : English

    Solved Re: CSS for Font Color

    Post by Mr. Brooks August 18th 2011, 2:43 pm

    Thank you so much. It worked perfectly! :D
    Base
    Base
    Forumaster


    Male Posts : 10383
    Reputation : 1695
    Language : English and French
    Location : United Kingdom, England

    Solved Re: CSS for Font Color

    Post by Base August 18th 2011, 2:45 pm

    Solved => Locked