XF 1.2 Sidebar question

kbarg

Member
I want to make this sidebar, background image start at the top of each sidebar section and fill in fully from left to right. What would I need to do?

sidebartest.jpg
 
Add this to EXTRA.css

Change the background-color line to background-image and replace with your image and tweak as needed

Code:
.sidebar .section .secondaryContent {
padding: 0;
}
.sidebar .section .secondaryContent h3 {
background-color: #E0E0E0;
padding: 5px;
}
.sidebar .section .secondaryContent div {
padding: 5px 10px;
}
 
Last edited:
Well I did mine based on the default theme...without a link to your forum I can't help you more than that with just a cropped picture for an example.
 
Top Bottom