Placing a repeating tile in background of off canvas element

Hi,

I wonder if you can help me please?

I’m using renew stack on a development site and am using a collapsed navigation for all devices. I would like to add a repeating tile background to the off canvas element of my navigation to tie in with the site background tiled image rather than the single colour. Is there some css that would work?

Thanks,

Ken

It’s okay, I’ve found it:
.x-off-canvas-content {background-image: url(my-image);}

Hi Ken,

Glad you sorted things out, here’s a reference for others.

Add this to Theme Options > CSS

.x-off-canvas-content {
	background-image: url(IMAGE URL HERE);
    background-repeat: repeat;
    background-size: 100px;
}

background-image
background-repeat
background-size

Cheers!

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