Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #876791

    nicolainicely
    Participant

    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,
    Nick

    #877035

    nicolainicely
    Participant

    Pls Halp

    #877513

    Friech
    Moderator

    Hi 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!

    #877563

    nicolainicely
    Participant

    Oh, awesome thank you!

    #877798

    John Ezra
    Member

    You’re most welcome!