Background colour

Discussion in 'Real Photography WordPress Theme' started by bridgie, Feb 19, 2015.

Thread Status:
Not open for further replies.
  1. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    Hi

    I want to change the entire background colour to #cccccc from the black.

    I have used -
    .content-wrapper{
    background:#F70077;;
    }
    .content-wrapper .main-content {
    background: #F70077;
    }

    and it doesn't work. Thanks
     
  2. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    I meant thats the code i've used, not colours :)
     
  3. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi bridgie!

    Use this code.
    Code:
    .content-wrapper{
    background:#F70077 !important;
    }
    .content-wrapper .main-content {
    background: #F70077 !important;
    }

    Thanks,
    Praveen
     
  4. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    Thank you!

    Also some more issues -
    Change the colour of the dotted lines, and make them solid not dotted.
    Change page title colour.
    Change the blog text colour

    Website is http://www.iainjardineracing.co.uk
    How do i change all the text colour on there? content / widgets
     
  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi bridgie!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #carousel ul.slides {
    border-bottom: 1px solid red;
    }
     
    .footer {
    border-top: 1px solid green;
    }
    .footer-bottom {
    border-top: 1px solid blue;
    border-bottom: 1px solid blue;
    }
    .content-bar .post {
    border-bottom: 1px solid gray;
    }
     
    .page-info h1 {
    color: red !important;
    }
    .post_content p {
    color: green !important;
    }
    
    To change text color use
    Code:
    body, div {
    color: pink !important;
    }
    Thanks,
    Praveen
     
  6. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    Thank you! :)
     
Thread Status:
Not open for further replies.

Share This Page