XenPorta/Theme Styling Help

iJumbo

Member
It seems like every site I go to has this worked out but I can't seem how to get the color/style I want for the Xenporta theme "header".

screenshot20120714at120.png


Does anyone know how to get the grey looking style set as the orange?

Thanks
 
That video did help me out a lot, however I'm having no luck with the situation!

Try this in extra.css?

Code:
.recentNews .subHeading {
    background: url("styles/flexile/xenforo/gradients/navigation-tab.png") repeat-x scroll center top #F1F1EC;
    border-bottom: 1px solid #D6D6D6;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #777777;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    margin: 0 -15px 15px;
    padding: 10px 15px;
}
 
Try this in extra.css?

Code:
.recentNews .subHeading {
    background: url("styles/flexile/xenforo/gradients/navigation-tab.png") repeat-x scroll center top #F1F1EC;
    border-bottom: 1px solid #D6D6D6;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #777777;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    margin: 0 -15px 15px;
    padding: 10px 15px;
}
Just tried that, not looking exactly right. http://mcfightcraft.com
 
Just tried that, not looking exactly right. http://mcfightcraft.com

Code:
.recentNews .subHeading {
    background: url("styles/flexile/xenforo/gradients/navigation-tab.png") repeat-x scroll center top #F1F1EC;
    border-bottom: 1px solid #D6D6D6 !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #777777;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    margin: 0 -15px 15px !important;
    padding: 10px 15px;
    border: 0px;
}

Give that a shot

I've never used Flexile but doing this css made me remember I think he built xenporta support into Flexile: Check out this :

http://xenforo.com/community/threads/flexile-dark.29336/#post-136006

There's some additional style properties that may be of help for you.
 
Code:
.recentNews .subHeading {
    background: url("styles/flexile/xenforo/gradients/navigation-tab.png") repeat-x scroll center top #F1F1EC;
    border-bottom: 1px solid #D6D6D6 !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #777777;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    margin: 0 -15px 15px !important;
    padding: 10px 15px;
    border: 0px;
}

Give that a shot

I've never used Flexile but doing this css made me remember I think he built xenporta support into Flexile: Check out this :

http://xenforo.com/community/threads/flexile-dark.29336/#post-136006

There's some additional style properties that may be of help for you.
Thanks for the help!
 
Top Bottom