Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #761680

    Hi,

    I’m trying to display one color section on this page only on desktop & the other only on mobile, but neither are picking up the media queries from Quick CSS or directly in the style.css file in the child theme.

    I have tried on numerous phones and browsers and no change.

    https://forrodublin.com/get-tickets-test/

    Can you let me know if this is a bug or a problem with the CSS?

    I picked the CSS up from this page: http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/

    #762023

    Hey Ciaran1212!

    I changed your code to following one

    
    @media only screen and (max-width: 990px) {
    #only-desktop { display: none !important; }}
    
    @media only screen and (min-width: 990px) {
    #only-mobile { display: none !important; }}

    Please review your website now :)

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.