This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

2
  1. Alex S Staff 7 years, 5 months ago

    Hi Jamila,

    This issue is occurring as a result of the following CSS you’ve added to WP Admin > Appearance > Customize, Aditional CSS:

    div.homepageslider {
      	width:500px;
        text-align:center;
        margin-left:auto;
      	margin-right:auto;
    }

    You should either remove the hard width (and replace it with widget padding) or wrap the above CSS in a media query. For example:

    @media (min-width: 780px) {
    	div.homepageslider {
    		width:500px;
    		text-align:center;
    		margin-left:auto;
    		margin-right:auto;
    	}
    }
  2. Jamila Colozzi 7 years, 5 months ago

    Thank you, that worked!

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread