This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Page Builder Ignoring CSS

8 years ago · Last reply by Alex S 8 years ago

Hey guys. I’m a premium customer (have the code) but for the life of me I can’t figure out how to get premium support. At any rate, I’m having an issue after upgrading tonight where the site appears to be ignoring CSS. I have custom CSS added to allow certain rows in page builder to show or not show on mobile devices. That code is as follows:

And then I'll put the appropriate class in the "row class" box in that particular row. The problem is it's all just being ignored. Upon further inspection, all of my CSS for the rows is being ignored as well as custom font/ size CSS.

This is our free support forum. Replies can take several days.

Need fast email support? Get SiteOrigin Premium

Replies

2
  1. Mike Kopstain 8 years, 1 month ago

    I should add the URL is monkeedeals.com

  2. Alex S Staff 8 years, 26 days ago

    Preface: This issue was resolved over premium support.

    Hi Mike,

    You can fix/change this with some custom CSS. If you navigate to AppearanceCustom CSS, you’ll get our custom CSS editor.

    Replace:

    /* Code to enable page builder rows on mobile and disable on desktop */
    @media (min-width: 680px) {
        .yes-mobile {
            display: none;
        }
    }
    /* Code to disable rows on mobile */
    @media (max-width: 680px) {
        .no-mobile {
            display: none;
        }
    }

    With:

    /* Code to enable page builder rows on mobile and disable on desktop */
    @media (min-width: 680px) {
    	.yes-mobile {
    		display: none !important;
    	}
    }
    /* Code to disable rows on mobile */
    @media (max-width: 680px) {
    	.no-mobile {
    		display: none !important;
    	}
    }

    You might also need to install the SiteOrigin CSS Editor.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread