Problems with site

Hi Ive created a wordpress site and it looks fine until I turn it landscape on a table. Then the problem is for some reason the site isn’t full width and there’s a line underneath the ABOUT US title. I can’t workout why the problems are happening.

My site is http://gbtester.uk/about-us/

If you inspect element and go to IPAD layout then turn it landscape you should see my problem.

Below show on the far right the white gap.

Well the underline issue is occurring in this class. You can play around with it to get rid of it.

.heading-title-bold:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    max-width: 148px;
    background-color: #ac9766;
    margin: 0px auto;
}

Maybe change to display: none; or if that messes things up change height to 0px.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.