Home>Support>Page Builder Ignoring CSS

Page Builder Ignoring CSS

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. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 6 years, 8 months ago Mike Kopstain

    I should add the URL is monkeedeals.com

  2. 6 years, 8 months ago Alex S
    Hi, I Work Here

    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.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More