CSS for Forum Title 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.
4 posters

    CSS for Forum Title

    ℋunni
    ℋunni
    Forumember


    Female Posts : 150
    Reputation : 4
    Language : English

    Solved CSS for Forum Title

    Post by ℋunni 5/6/2012, 02:36

    Running: Invision!

    I'd like to be able to center the highlighted portion, as well as change the font, size, and color.
    I've tried looking through the CSS for it, but I'm having some trouble finding it.

    CSS for Forum Title OY5fg


    Last edited by ℋunni on 5/6/2012, 07:12; edited 1 time in total
    Ryanette
    Ryanette
    Forumember


    Male Posts : 135
    Reputation : 2
    Language : English (British)
    Location : England, United Kingdom

    Solved Re: CSS for Forum Title

    Post by Ryanette 5/6/2012, 03:01

    Your board URL, please?
    ℋunni
    ℋunni
    Forumember


    Female Posts : 150
    Reputation : 4
    Language : English

    Solved Re: CSS for Forum Title

    Post by ℋunni 5/6/2012, 03:39

    [LINK DELETED]


    Last edited by ℋunni on 5/6/2012, 07:11; edited 1 time in total
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51500
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: CSS for Forum Title

    Post by SLGray 5/6/2012, 03:44

    For the title, add this in the title:
    <center>Title</center>

    To change the font add this to the description:
    <font=YOUR FONT><size=SIZE YOU WANT><color=COLOR YOU WANT>Message</color></size></font>




    CSS for Forum Title Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    ℋunni
    ℋunni
    Forumember


    Female Posts : 150
    Reputation : 4
    Language : English

    Solved Re: CSS for Forum Title

    Post by ℋunni 5/6/2012, 03:47

    Is there any way I can add all of what I want through CSS?

    Since I do want to bring it down some, change the text-transform, etc.

    EDIT: So, for some reason, I have to put <center ></center > in the topic title, or else it won't center, despite it being !important in the CSS. I found the CSS section that I needed, but margin and padding control isn't working. Any ideas?

    Code:
    .hierarchy {
       display: inline;
       font-size: inherit;
       font-weight: inherit;
            text-align: right!important;
            text-transform: lowercase;
            font-size: 20px!important;
            font-family: 'Open Sans Condensed'!important;
       }
    *+ html .hierarchy {
       font-size: 20px;
         font-weight: normal;
       }
    * html .hierarchy {
       font-size: 20px;
       font-weight: normal;
       }
    table.ipbtable .forum-name a {
       font-weight: normal;
       }

    EDIT: Pff, this is complete. Thanks everyone <3.
    LGforum
    LGforum
    Hyperactive


    Male Posts : 2265
    Reputation : 264
    Language : English
    Location : UK

    Solved Re: CSS for Forum Title

    Post by LGforum 5/6/2012, 13:50

    Try this:
    Code:

    .hierarchy {
       display: inline;
       font-size: inherit;
       font-weight: inherit;
            text-align: right!important;
            text-transform: lowercase;
            font-size: 20px!important;
            font-family: 'Open Sans Condensed'!important;
       }
    *+ html .hierarchy {
       font-size: 20px;
         font-weight: normal;
       }
    * html .hierarchy {
       font-size: 20px;
       font-weight: normal;
       }
    table.ipbtable .forum-name a {
       font-weight: normal;
      margin: 0 auto;
      width: 90%;
       }