Help in CSS Codes

  • Unknown's avatar

    Hello everyone, I have been trying to change the color for the connection theme from green to blue. So far, I am on the spot except for few things such as the top bar in the header and the page backroung and divider. I have tried several codes but it either changes everything or nothing but the color. Does someone could tell me where to look for the top bar header and the main page backround in the CSS?
    Thank you
    Bluelulie

  • Unknown's avatar

    the page background image is called ‘rap.jpg’, and is referenced in #rap (the containing div around everything on the page).

    the green header is in ‘better-header.gif’ (part of matt or whoever doing violence to the original connections) and is referenced in #header.

    you can override just the green navigation menu by changing #topnav.

    example:

    #topnav {
    background:#73879d;
    border:#fff 2px solid;
    list-style:none;
    font-size:0.9em;
    margin-top:8px;
    margin-right:8px;
    margin-left:8px;
    margin-bottom:0px;
    padding:5px 10px 0 0;
    text-align:right;
    }

  • Unknown's avatar

    Thank you Sunburntka, I will try that and let you know :)

    EDIT: It worked !, but need to work on the margin as it’s a bit too big compare to the header. Thanks.

    Sunburntka: sorry to bother you again, but when you said that the main page background is “rap.jpg” then i understand it’s a picture, therefore cannot change it, right?

  • Unknown's avatar

    sorry about the margins, they were done for my own site, where i’d heavily customized the HTML of connections as well.

    you can upload your own image, and then add something like
    #rap {
    background: url(http:
    //bluejulie.wordpress.com/wp-content/uploads/08/rap2.jpg) repeat-y top center;
    }

    to your CSS to override the one in connections.

  • Unknown's avatar

    No worries ;)
    Thank you for your help ,I will try that.

  • The topic ‘Help in CSS Codes’ is closed to new replies.