-
AuthorPosts
-
March 19, 2014 at 12:33 pm #24546
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!
March 20, 2014 at 11:25 am #24848Hey Jared,
In the Customizer > Custom > CSS, please add the code below.
.entry-wrap { background-color: rgba(255,255,255,0.5); }
Hope that helps.
March 21, 2014 at 9:27 am #25252thanks, 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?
March 21, 2014 at 10:58 am #25263Older 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.
March 28, 2014 at 5:33 pm #27533can i just make one page transparent and others regular? would i just insert the code about into another location?
March 29, 2014 at 9:18 pm #27805Hey!
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.
April 8, 2014 at 12:04 pm #31165Now is there a way to not make other other pages in my site transparent?
April 8, 2014 at 8:26 pm #31364Hi!
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.
-
AuthorPosts