Okay
  Public Ticket #802709
column padding not working
Closed

Comments

  • Josh started the conversation

    i created a row with three columns and three a single textbox in each column.  In the wc editor i added 5% padding on all sides.  This works perfectly in chrome, but in firefox the padding doesn't showup.  How can i get it to look the same in firefox as it does in chrome.

  •  8,994
    Tahir replied

    Hey Again,

    One user resolved it by adding a class 'padding-ff' to the items that i could not fix with your work around (such as the testimonials and the call to action. In the css i wrote a rule that only only applied to firefox and defines a new padding such as:

    @-moz-document url-prefix() {
    .padding-ff.padding-5-percent {
    padding: 60px 5%!important;
    }
    .padding-ff.padding-8-percent {
    padding: 90px 8%!important;
    }
    }

    Bes.t


    ThemeNectar Support Team