Viewing 1 replies (of 1 total)
  • Plugin Author DesignsAndCode

    (@designsandcode)

    Hey Rik

    It sounds like your theme is loading some CSS after FASC buttons, which means some rules are being overwritten.

    The best thing to do would be to add the CSS from FASC buttons into your theme stylesheet, so you know they are loaded after your themes CSS, and hopefully the rules will work.

    So in your theme where you are supposed to add your custom css, add the rounded rules again, this time with the important option set:

    /* rounded */
    a.fasc-button.rounded.fasc-size-xlarge, .fasc-rounded-medium.fasc-size-xlarge
    {
    	border-radius:15px !important;
    }
    a.fasc-button.rounded.fasc-size-large, .fasc-rounded-medium.fasc-size-large
    {
    	border-radius:10px !important;
    }
    a.fasc-button.rounded.fasc-size-medium, .fasc-rounded-medium.fasc-size-medium
    {
    	border-radius:9px !important;
    }
    a.fasc-button.rounded.fasc-size-small, .fasc-rounded-medium.fasc-size-small
    {
    	border-radius:8px !important;
    }
    a.fasc-button.rounded.fasc-size-xsmall, .fasc-rounded-medium.fasc-size-xsmall
    {
    	border-radius:7px !important;
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Small Problem’ is closed to new replies.