I am currently facing an issue where I have two backgrounds, one as an image without repeating and the second with repeating in both x and y axis. Everything displays correctly on PC, but on mobile browsers the second image only repeats on the x axis. Here is my CSS code:
#bdy
{
direction: rtl;
width: 1200px;
margin: 0 auto;
background: url(img/bg1.png),url(img/bg.png);
background-repeat: no-repeat,repeat;
background-position: center -70px,top;
}
I need to make the second image repeat on both x and y axes, what changes should I make?