• The header for this site is not positioned correctly on a mobile phone. The title text is clipped or overlaying the body.

    Problem Site

    This WP site is the first one I’ve done, so I have no idea how to fix it.

    Also, I noticed that the word “fusion” is spelled “fuision” once on the code. Is that a problem?

Viewing 1 replies (of 1 total)
  • Hey neumannu,

    Hope your weekend is going well ??

    You can add some responsive styling by using media queries, paste this into your custom stylesheet:

    @media only screen and (min-device-width: 386px) and (max-width: 500px) {
       .navbar-default .navbar-brand {
      font-size: 14pt;
    }
    }
    
    @media only screen and (max-width: 385px) {
       .navbar-default .navbar-brand {
      font-size: 10pt;
    }
    }

    That reduces the font size depending on the width of the screen. If you don’t already have a custom stylesheet then you can use this plugin here: https://www.ads-software.com/plugins/simple-custom-css/

    Hope this helps! Enjoy the rest of your weekend.

    Cheers,
    Tyler

Viewing 1 replies (of 1 total)
  • The topic ‘Header Spacing on Mobile’ is closed to new replies.