Site logo

[Support request] Shadows for blocks

Home Forums Support [Support request] Shadows for blocks

Home Forums Support Shadows for blocks

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #839367
    Pedro

    Hello! I would like to add shadows to content blocks like they do in Woorkup:

    https://www.dropbox.com/s/a3on1zt1dniokpx/Captura%20de%20pantalla%20de%202019-03-14%2023-24-29.png?dl=0

    How can I do it? Thank you!

    #839374
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
        border: 1px solid rgba(0,0,0,.05);
        box-shadow: 0 0 27px 0 rgba(214, 231, 233, 0.52);
    }
    #839895
    Pedro

    Hi leo!

    That code adds to the blocks of products.

    What I want is to add shadow to the entire block of the content of the site as to the sidebar.

    Thank you!

    #839954
    Leo
    Staff
    Customer Support

    So are you only referring to the single product page?

    The front page isn’t possible as you have a full-width image which is inside the content container.

    #840037
    Pedro

    Hi leo!

    I mean the main container and the left sidebar.

    #840257
    Leo
    Staff
    Customer Support

    Give this a shot:

    .site-main, .sidebar .widget {
        box-shadow: 0 0 27px 0 rgba(214, 231, 233, 0.52);
        border: 1px solid rgba(0,0,0,.05);
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.