Tagged: x
-
AuthorPosts
-
April 11, 2016 at 12:02 pm #876791
Hi my website can be found at http://willetts-elasticlo-1ff6d4enxv1xw-1117938747.us-west-2.elb.amazonaws.com/wordpress/index.php/new-communities/ I would like the same effect that I get with the code:
.entry-wrap {
background-color: transparent;
box-shadow: none;
}but only for the first section on the page. How can I achieve this?
Thanks,
NickApril 11, 2016 at 2:30 pm #877035Pls Halp
April 11, 2016 at 9:59 pm #877513Hi There,
Thanks for writing in! Please update your code to this:
.page-id-88 .entry-wrap { background-color: transparent; box-shadow: none; } .page-id-88 .x-section:not(#x-section-1) { box-shadow: 0 0.15em 0 0 rgba(0,0,0,0.135); background-color: #fff !important; }
You can add this under Custom > CSS in the Customizer.
At first this seems to be tricky, because the shadow and background was applied on the wrapper not on each section. What we did is remove the the background and shadow on the wrapper with your code and then applied it back (with my code), but this time apply to each section except the first one.
Hope it helps, Cheers!
April 11, 2016 at 10:52 pm #877563Oh, awesome thank you!
April 12, 2016 at 2:31 am #877798You’re most welcome!
-
AuthorPosts