0
Welcome Guest! Login
0 items Join Now

visible-desktop showing in visible-large

    • eRimkus's Avatar
    • eRimkus
    • Sr. Rocketeer
    • Posts: 168
    • Thanks: 2

    Re: visible-desktop showing in visible-large

    Posted 9 years 10 months ago
    • I ran into this problem too. It turns out the desktop and large mediaquerie classes have some over lap. I added the following to my yourtemplatename-custom.css file and it took care of the problem for me.
      /****************from mediaqueries.css*******************/
      /**********separates desktop from large class************/
      @media only screen and (min-width: 1200px) {
        body.layout-mode-responsive .visible-large {
          display: inherit !important;
        }
        body.layout-mode-responsive .hidden-large {
          display: none !important;
        }
        body.layout-mode-responsive .visible-desktop {
          display: none !important;
        }
        body.layout-mode-responsive .hidden-desktop {
          display: none !important;
        }
      }
      /***********end of mediaqueries.css changes**********/

      Hope it helps,
      Ed
    • The following users have thanked you: Adrian Boogaard

  • Re: visible-desktop showing in visible-large

    Posted 9 years 8 months ago
    • Hey Ed.
      I had the exact same problem and your solution works great!
      Adrian
    • I have just failed too many times to really care!
    • eRimkus's Avatar
    • eRimkus
    • Sr. Rocketeer
    • Posts: 168
    • Thanks: 2

    Re: visible-desktop showing in visible-large

    Posted 9 years 8 months ago
    • Glad to hear it helped someone else.
      All the best,
      Ed
    • Last Edit: 9 years 8 months ago by eRimkus.
    • Luke Douglas's Avatar
    • Luke Douglas
    • Hero Rocketeer
    • Posts: 322
    • Thanks: 15
    • Another Old Hack!

    Re: visible-desktop showing in visible-large

    Posted 9 years 8 months ago
    • Ed,

      Thanks! I had actually added a custom css snippets for something along this line but I like yours better. More elegant solution.

      Luke
    • Just another old hacker!

Time to create page: 0.053 seconds