Changing Design

Mickey

New Member
Messages
3
Hi Ehren
The images behind the text. I was wondering if there is a way to change it to something else
 

Attachments

  • D3D02DF6-5DE8-42BC-B0DA-D907617CB424.jpeg
    D3D02DF6-5DE8-42BC-B0DA-D907617CB424.jpeg
    80 KB · Views: 6

Ehren

Administrator
Staff member
Customer
Messages
4,564
Website
www.xenfocus.com
Hi Ehren
The images behind the text. I was wondering if there is a way to change it to something else

Adding this to your extra.less file will remove the image from the headers:
Less:
#XF .block-header{
    background-image: none;
    box-shadow: rgba(0,0,0,0.3) 0px 1px 4px;
}

To change the image to something else, use this instead:

Less:
#XF .block-header{
    background-image: url('https://site.com/image.jpg');
    box-shadow: rgba(0,0,0,0.3) 0px 1px 4px;
}

I hope that helps! :)
 
Top