Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #764708

    Hi Enfold team,

    i added the following Quick CSS to my site in order to hide masonry images on desktops (as the title can be seen via mouse over):

    /*Masonry Image title hide on desktop*/

    @media only screen and (min-width: 960px) {
    .av-inner-masonry-content {
    display:none !important;
    }

    Unfortunately this somehow messes up my site completely in resolutions betwenn 768px and 960px width.
    E.g. navigation menu display, shopping cart symbol, Category text and backgound color/size. Like it’s disabling a bunch of other code i added…

    And i do need to hide those masonry titles above 960px width…
    Please help me to solve this.

    Tobi

    #765174

    Hey Tobias,

    Looks like you didn’t close the media query, try this instead:

    @media only screen and (min-width: 960px) {
      .av-inner-masonry-content {
        display:none !important;
      }
    }

    Best regards,
    Rikard

    #766030

    Ah, this was exactly the one thing i did not check ;-)
    This solves everything.

    Awesome help, thanks Rikard

    Thread can be closed

    #766514

    Hi,

    It’s easy to miss stuff like that :-)

    Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Quick CSS Code problem’ is closed to new replies.