Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #24546

    jared d
    Participant

    Is there a way to the main body text transparent. I know you can do it with the header and footer. But i would like to have the same option with the main text.

    This site is an example that i like-http://www.planetruthgolf.com/

    http://www.danfordgolfinstruction.com

    thanks!

    #24848

    Christian
    Moderator

    Hey Jared,

    In the Customizer > Custom > CSS, please add the code below.

    .entry-wrap {
    background-color: rgba(255,255,255,0.5);
    }

    Hope that helps. 🙂

    #25252

    jared d
    Participant

    thanks, that worked great. can i somehow do the same for the other pages? is there a reason why it shows up on crome but not on internet explorer?

    #25263

    Rubin
    Keymaster

    Older versions of browsers like IE do not support RGBA (semi transparent) backgrounds.

    Which other pages do you mean. Can you show them so I can give you the right CSS codes for it.

    #27533

    jared d
    Participant

    can i just make one page transparent and others regular? would i just insert the code about into another location?

    #27805

    Support
    Member

    Hey!

    Thank you for using the theme!

    That is possible. You need to inspect the page using firebug or google chrome’s inspect element then look for the body class id. You can use that id as a css selector to modify elements on that specific page. Something like this:

    .page-id-6618 .entry-wrap {
    background-color: rgba(255,255,255,0.5);
    }

    The page-id-6618 is the body id of one the pages on my end. It might be different on your end, use that instead.

    #31165

    jared d
    Participant

    Now is there a way to not make other other pages in my site transparent?

    #31364

    Support
    Member

    Hi!

    Please remove the first code that we suggested then use the one with the page id to specify which pages you want the transparent background to be applied.

    I hope that helps.