Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #18311
    simonw
    Member

    Hi there

    I was just wondering, is there a way of enabling the content section and the sidebar to have some from of transparency!?

    Site is http://www.gingermilk.co.uk

    #18314
    Sakin
    Keymaster

    @simonw: For transparent background you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For Content */
    .hentry { background-color: transparent; }
    /* For Sidebar */
    .widget { background-color: transparent; }
    #18319
    simonw
    Member

    Amazing!!! What a relief to have such amazing support from a developer!!

    #18321
    Sakin
    Keymaster

    @simonw: Thanks for your appreciation.

    #18322
    simonw
    Member

    ok, thats not what i am looking for in the end.. hahaha.. But at least i have a bit of direction now so will try figure it out.. Rather looking for a bit of opacity than full transparency 🙂

    #18325
    Sakin
    Keymaster

    @simonw: then it will be like below:

    .hentry {
    	background: #fff; /* For Old Browser, normal background */
    	background: rgba(255, 255, 255, 0.7);
    }
    #18326
    simonw
    Member

    *sigh* you just too quick!! 😀 Thanks again!!!!!

    #41559
    isfak
    Member

    Hello,

    I was looking for transparency as well, your code works perfect for the background color but not for the border. Could you please let me know how to make border transparent as well?

    Thanks in advance

    #41570
    Sakin
    Keymaster

    @isfak: You can add the following in CSS in “Appearance => Theme Options => Custom CSS” box.

    .hentry {
    	border: none;
    }
    #41576
    isfak
    Member

    That did the work. Thanks for the quick support!

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Transparency of content and sidebar’ is closed to new replies.