How to change the overall font size? 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.

    How to change the overall font size?

    avatar
    Guest
    Guest


    How to change the overall font size? Empty How to change the overall font size?

    Post by Guest July 29th 2012, 5:55 am

    I'd like to change the font size of all normal fonts, meaning everything that isn't topic titles etc. How can I do this?

    Asking because I've chosen a new font face but at it's current size it's too small.
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    How to change the overall font size? Empty Re: How to change the overall font size?

    Post by ankillien July 29th 2012, 7:55 am

    Hi,

    Try this css code...

    Code:
    body {
    font-size: 15px;
    }

    If it doesn't work, provide a link to your forum.
    avatar
    Guest
    Guest


    How to change the overall font size? Empty Re: How to change the overall font size?

    Post by Guest July 29th 2012, 11:32 am

    Never mind, I totally found the basic editor part e.e...

    Okay, well here's another font question : How to change...

    1. Only the forum links font.
    2. The headers in the category font (Category Title, Topics, Posts, Last Posts).
    ankillien
    ankillien
    Energetic


    Posts : 5198
    Reputation : 129
    Language : English, XHTML, CSS, JS, PHP, SQL

    How to change the overall font size? Empty Re: How to change the overall font size?

    Post by ankillien July 29th 2012, 12:09 pm

    For link font color...

    Code:
    a {
    color: red;
    }

    For category title color...

    Code:
    .table-title h2 {
    color: red;
    }

    For topics, posts, lastpost title..g.

    Code:
    .header .topics , .header .posts , .header .lastpost {
    color: red;
    }