Home Forums WoodMart support forum Drop shadow attributes

Drop shadow attributes

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #86862

    koenzwaan
    Participant

    Hello,

    I have a question, i would like to add a shadow behind my attributes (colors) on this page:
    https://boccale.nl/product/e219-medaille/

    What should i do to fix that? I have seen it on other website that use your theme

    #86875

    Hello,

    Thank you very much for choosing our theme and for contacting us.

    Please navigate to the Theme Settings > Product page > and find this option http://prntscr.com/ldmdws

    Best Regards

    #86878

    koenzwaan
    Participant

    Sorry, thats not what i mean.

    I mean around the colors. see screenshot from other website

    Attachments:
    You must be logged in to view attached files.
    #86892

    Hello,

    Try this code:

    .swatches-select .colored-swatch{
    -webkit-box-shadow: -1px -1px 17px -1px rgba(85,85,85,0.55);
    -moz-box-shadow: -1px -1px 17px -1px rgba(85,85,85,0.55);
    box-shadow: -1px -1px 17px -1px rgba(85,85,85,0.55);
    }

    You can change the values as per your needs and add this code to the Theme Settings > Custom CSS > Global.

    If the code does not work, provide your site admin access.

    Best Regards

    #86952

    koenzwaan
    Participant

    It didnt work; can you please check it out

    #86977

    Artem Temos
    Keymaster

    Try to use the following code instead

    .swatches-select .colored-swatch, .swatches-select .image-swatch{
    -webkit-box-shadow: 0px 0px 9px rgba(85,85,85,0.7);
    -moz-box-shadow: 0px 0px 9px rgba(85,85,85,0.7);
    box-shadow: 0px 0px 9px rgba(85,85,85,0.7);
    }
    #86997

    koenzwaan
    Participant

    no nothing…

    #87039

    Hello,

    Custom CSS does not work correctly now due to HTTPS. Please do the following:

    1. Find this file woodmart/inc/classes/Dynamiccss.php

    2. Insert this code in this place http://prntscr.com/le6mhv :

    if ( is_ssl() ) {
    	$file['url'] = str_replace( 'http', 'https', $file['url'] );
    }

    We shall fix this in our nearest update.

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)