RM 1.0 Move sidebar from left to right

Bram

Well-known member
Is it possible to move the resource manager sidebar on the RM mainpage to the right having the same dimension as the forum sidebar?

I am using the widget framework and displaying a sidebar on the entire boards on the right side. Kinda annoys me that they layout of just that single page stands out to the rest :)

Can I change this in a template maybe? All help appreciated as always (y)
 
Code:
.resourceListSidebar {
float: right;
}
 
.resourceListMain {
margin-right: 230px;
margin-left: 0;
}

Try that.

You may need to use !important.
 
Thanks man,

I've tried that before by adding such to extra.css but with no result. at /forum/resources the sidebar remains on the left side of the page.
 
Paul thank you. I found I had to add !important in one place

Code:
.resourceListSidebar {
float: right;
}
 
.resourceListMain {
margin-right: 230px;
margin-left: 0 !important;
}

Might have been because I had been trying to do it by myself before your sleek help - I messed it.
The
margin-left: 230px;

in resource_list.css is very insistent! Or else it's coming from somewhere else as well.
 
That did the trick thanks morgain.

How come the layout of this resource page is totally different than normal content pages. My above the content ad for example looks odd compared to forum_list, forum_view etc
 
Top Bottom