Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #16123
    EveryHome
    Member

    I was wondering if somebody could provide me with codes to achieve the following:

    Change the colour of this page border: http://www.everyhomeisacastle.com/about-2/

    Achieve the same effect on this page, and customise the colour of all comment boxes: http://www.everyhomeisacastle.com/contact-2/

    And finally I’d like to change the title colour and border of the first box on these pages: http://www.everyhomeisacastle.com/category/diy/

    #16141
    Sakin
    Keymaster

    @EveryHome: Sorry I don’t get it which border you are talking about. Can you be more specific.

    You can adjust the color code as per you need for Comment Box and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Comment box Background Color  */ 
    .commentlist > li.comment {
        background-color: #fff;
    }
    /* For Author Comment box Background Color  */
    .commentlist .children > li.bypostauthor {
        background-color: none repeat scroll 0 0 #ccc;
    }

    For title color and border color, you can adjust the color code as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Border color */
    .page-header { border-color: #ccc; }
    /* For Page Title color */
    .page-title { color: #666; }
    #16340
    EveryHome
    Member

    Hi Sakin, the page border I’m referring to would be the border around the white area of my about section. I want it to have a solid border to match the individual blog posts.

    Same thing with the page titles, I wanted them to match blog post titles but with a solid border all around.

    #16348
    Sakin
    Keymaster

    @EveryHome: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .hentry { border: 2px solid #454545; }

    #16434
    EveryHome
    Member

    Thanks Sakin.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Customisation Tweaks’ is closed to new replies.