• Resolved lhurey

    (@lhurey)


    Hello,

    First of all I would like to thank you for this wonderful plugin.

    I have an issue with my test on store logos being cropped and resized. How can I set it so it to my desired thumbnail size?

    I have change

    #wpsl-stores .wpsl-store-thumb {
        float:right;
        border-radius:3px;
        margin:7px 0 0 10px;
        width:48px;
        height:48px;
        padding:0;
        border:none;
    }

    to

    #wpsl-stores .wpsl-store-thumb {
        float:right;
        border-radius:3px;
        margin:7px 0 0 10px;
        width:150px;
        height:150px;
        padding:0;
        border:none;
    }

    but it’s not working…also Media Settings -> has been set to width:48px; height:48px;

    could you please take a look at my test site
    https://wordpress.org/plugins/wp-store-locator/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lhurey

    (@lhurey)

    sorry wrong typo above…

    Media Settings -> has been set to width:150px; height:150px;

    Plugin Author Tijmen Smit

    (@tijmensmit)

    What is the url of your site?

    You added the css to the css file from your theme? It sounds like another css rule could be overwriting the one you added. You can try to add !important after the width and height.

    So it would look like this.

    #wpsl-stores .wpsl-store-thumb {
        float:right;
        border-radius:3px;
        margin:7px 0 0 10px;
        width:150px !important;
        height:150px !important;
        padding:0;
        border:none;
    }
    Thread Starter lhurey

    (@lhurey)

    it is working now…

    thanks…my test site is http://cebutouristmap.com/

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Thumbnail resizing issue’ is closed to new replies.