Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #61157
    Gregory
    Participant

    I would like to make certain sections of content, ie. featured-content have a semi transparent background. where would I code this in? I have been trying to locate the php or css file but it seems to be overridden by the GUI based appearance customizer.

    Any help would be greatly appreciated. Thanks in advance.

    #61320
    Sakin
    Keymaster

    @Gregory: You can add the semi transparent background color using rbga color code as following css. You can see, rgba color 255, 255, 255 is white and 0.6 is 60% transparent. So, change the color code and transparent as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #featured-content {
        background: #fff; /* Solid Color For Old Browser */
        background: rgba(255, 255, 255, 0.6); /* 60 percent transparent background color */
    }
    #61342
    Gregory
    Participant

    This works for the majority however not the featured content section.

    see the example here http://www.e-qgroup.com/gr/

    #61473
    Sakin
    Keymaster

    @Gregory: I check in your site but I don’t see css for #featured-content

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Semi Transparent Backgrounds for Content’ is closed to new replies.