Support » Theme: Customizr » Remove a button only for mobile version.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Nothing wrong,
    it’s just that you cannot use quotes and double quotes anymore in the custom css box.
    You have to put it in your child-theme style.css and without the escapings, so remove that from the box and put it in the style.css this way:

    @media all and (max-width: 600px) {
    .aio-button-left a.aio-blue[href*="page_id=220"] {
      display: none;
    }
    }

    But the problem is that it will leave a blank space, because the parent div has thickness.. so I suggest to add also .aio-button-left .aio-pulse {display: block;}
    so:

    @media all and (max-width: 600px) {
    .aio-button-left a.aio-blue[href*="page_id=220"] {
      display: none;
    }
    .aio-button-left .aio-pulse {display: block;}
    }

    Thread Starter foodergolove

    (@foodergolove)

    Ok thank you!

    Thread Starter foodergolove

    (@foodergolove)

    P.S. you are a genius.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove a button only for mobile version.’ is closed to new replies.