Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor ModDish

    (@moddish)

    your problem is in your themes css :

    ul, ol {
    margin: 0 20px 20px 0;
    padding-left: 40px;
    }

    padding left

    in the plugin style sheet change this :

    ul.products {
    float:left;
    width:100%;
    margin:0 0 20px 0 ;
    -moz-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
    }

    to this :

    ul.products {
    float:left;
    width:100%;
    margin:0 0 20px 0 ;
    -moz-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
    padding-left: 0px;
    }

    Thread Starter bobjung

    (@bobjung)

    Thank you verymuch for the help! Sorry it took me so long to get back to you – I just saw this! So this css in the plugin theme, correct?

    Thread Starter bobjung

    (@bobjung)

    oops – never mind – got it – works like a charm!! Thanks again!!

    Plugin Contributor ModDish

    (@moddish)

    anytime, glad I could help

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

The topic ‘How to shorten CSS’ is closed to new replies.