Supress buttons appearing on mobile

  • Unknown's avatar

    I have two buttons (the green and blue ones) over the featured image of my homepage.

    Can I stop these appearing on a mobile phone screen as they take up the whole screen?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    Please try using the css below. It should hide them when the screen is narrower than 768px.

    You can change that value to whatever screen width you prefer

    @media screen and (max-width: 768px) {
    	.frontbutton,
    	.greenfrontbutton {
    		display: none;
    }
  • Unknown's avatar

    Sorry, the closing bracket is missing from that css. It should be:

    @media screen and (max-width: 768px) {
    	.frontbutton,
    	.greenfrontbutton {
    		display: none;
    	}
    }
  • Unknown's avatar

    Once again, works perfectly Gary. Many thanks indeed.

    Also you might know how I might solve the following also. I’m trying to expand the homepage (and other pages) to fill the screen. Have tried:

    .site {
    max-width: 100%;
    }

    But the main homepage featured image does not fit across (assume image to small, or the empty sidebar widget is messing it up?).

    Any ideas?

    Many thanks

  • Unknown's avatar

    Once again, works perfectly Gary. Many thanks indeed.

    You’re welcome :)

    I see you’ve created a separate thread about the site width at:

    https://en.forums.wordpress.com/topic/home-page-to-fill-screen?replies=3#post-2983727

    Since changing the width of several items on the site is quite complex, it’s better to discuss that issue in the dedicated thread already created for it.

    Thanks :)

  • Unknown's avatar

    Okay Gary, no worries at all and thank you ever so much for your help. It’s been very much appreciated.

    Ash

  • The topic ‘Supress buttons appearing on mobile’ is closed to new replies.