Which template controls this?

Jeff Fuqua

Well-known member
Using Aurora and wondered if anyone knew what I need to adjust to move the right side with the red block around it to align with the rest.

Thanks!

screen.webp
 
That is controlled by this CSS:

.mainContent {
margin-right: 310px;
}


You can try increasing it to something like 330px, but that may have a knock-on effect on other pages.
It may be worth contacting the style author to get a proper fix for it.
 
It's in the sidebar.css template like so:

.mainContent
{
margin-right: {xen:calc '@sidebar.width + 10'}px;
}

However, you can use EXTRA.css to avoid editing the main template.
 
Top Bottom