custom Css not working on MAC operating system
-
i want to increase background size of .woo-feature and .woo-about in page but after add the CSS the background width increased on window all browsers but its not working on MAC operating system on any of browser.
website link:- http://bowerybeachfarm.com/farm-tour/
CSS I USED:- .woo-feature{margin-left:-13%; margin-right:-13%;}
.woo-about{margin-left:-13%; margin-right:-13%;}please give me any suggestion where i am wrong and how can i fix it.
Thanks
Gurjit Singh
-
i want to increase background size of .woo-feature and .woo-about in page but after add the CSS the background width increased on window all browsers but its not working on MAC operating system on any of browser.
website link:- http://bowerybeachfarm.com/farm-tour/
CSS I USED:- .woo-feature{margin-left:-13%; margin-right:-13%;}
.woo-about{margin-left:-13%; margin-right:-13%;}please give me any suggestion where i am wrong and how can i fix it.
Thanks
Gurjit Singh
This is simple code used in css.
div {
background: url(background.jpg);
background-size: 800px 600px;
background-repeat: no-repeat;
}If you not want to use background image, remove 1st line of code. You can use background size in "%" also, thats will fits in all browser.