Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Greg Priday

    (@gpriday)

    Hi ikovac84

    Do you have a public URL where I can take a look at what’s going on?

    Thread Starter ikovac84

    (@ikovac84)

    Hi Greg

    Yes you can check https://www.marblemonkey.com/ subscribe section. I have tried with different themes but it`s always the same.

    Hey ikovac84,

    I believe the image is responsive there in your subscribe section. The spacer fills area on large and small screens. Because of that, the row is quite tall on smaller screens and since the background image is set to cover, a large chunk of it will be cut off.

    You could use this CSS to hide the spacer on smaller screens:

    @media screen and (max-width: 780px) {
    
    	#panel-109-2-0-0 .so-widget-spacer {
    		display: none;
    	}
    
    }

    Hopefully that will let the row be a more natural size and the image sized more appropriately.

    Thread Starter ikovac84

    (@ikovac84)

    Hi Bill
    It looks better now. Thanks a lot ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Responsive problem’ is closed to new replies.