Anyone knows how I could solve this?

Status
Not open for further replies.

deiwman

BANNED
Joined
Feb 22, 2010
Messages
544
Reaction score
442
I would like to change the color of some elements (some arrows and the line under the navbar ? I have attached an image with them surrounded with red) but can?t find anything that works. I am using the theme Responz from Themify and I would appreciate any help. The color of those elements can be changed only if I change the skin of the theme but there are only 8 skins available and I want a specific color.


D2fmAlM
 
use firebug find the css elements you want to alter, and apply custom css to that elements
 
Bottom arrow css:

/* footer arrow custom color */
.back-top a {
background-color: #345234;
}

I'm not sure what the other arrows are, since you censored them. Couldn't find them in the demo I'm sorry :/
 
Assuming you are using the original CSS file, search for the header, back-top and post-nav and change the background colors. It should look something like this:

For the header horizontal bar:
Code:
#header {
    border-bottom: 4px solid [COLOR=#ff0000][B]#345234[/B][/COLOR];
    height: 220px;
    position: relative;
    z-index: 8000;
}

Bottom navigation
Code:
.back-top a {
    background: url("/images/arrow-up.png") no-repeat scroll center center [COLOR=#ff0000][B]#345234[/B][/COLOR];
    border-radius: 10em 10em 10em 10em;
    display: block;
    height: 30px;
    margin: 0 10px 10px 0;
    text-indent: -900em;
    width: 30px;
}

Page navigation (left - right arrows)
Code:
.post-nav span span {
    background: none repeat scroll 0 0 [COLOR=#ff0000][B]#345234[/B][/COLOR];
    border-radius: 10em 10em 10em 10em;
    color: #FFFFFF;
    display: block;
    float: left;
    font: 20px/100% "Times New Roman",Times,serif;
    height: 28px;
    margin: -6px 10px 17px 0;
    padding: 4px 0 0;
    text-align: center;
    width: 32px;
}

I just copied everything off as a guide, but that's basically it. Just change the colors where it's highlighted, or you can create custom elements.
 
Thanks everyone for the help, i really appreciate it! Thread closed.
 
Status
Not open for further replies.
Back
Top