XF 1.2 RM Sidebar in normal XF fashion

Bram

Well-known member
This is something that is bugging me since day one with the Resource Manager. That pesky left aligned sidebar (similar as the one of the profile pages) :)

I am an avid user of the widget framework addon by @xfrocks and have a sidebar displaying on every page of the community forums (some adsense, some latest news, etc).

However on the resource index and category pages all of a sudden this left aligned sidebar pops up ruining my design and uniformity.

Is it possible to have the RM categories displayed in the same way as for example the default right sidebar in the conversations?
 
You will need to do something like this:
Code:
.resourceListMain
{
margin-left: 0px;
margin-right: 230px;
}

.resourceListSidebar
{
float: right;
}
 
Thanks @Brogan / DrEvil

That will just place the sidebar the right I believe. I think i am looking for a more fundamental change :)

For some reason, and maybe you can explain why, the design of the resource index pages and the member profile pages is so much different than the rest of the XF design. Just curious why that is.

What I am after is more like the layout of the xenmedio page linky

mini_me[1].gif


Will you help me for a kajillion bajillion dollars?
 
Its always the same song, after posting a request here I get a *eureka* moment.

Had to cut out the sidebar parts from the index and category templates. Created two new templates with that same code and added them to the widget framework and my biggest "problem" with XF is solved :)

http://www.racedepartment.com/forum/resources/

@xfrocks your addon is truly stunning buddy!
 
Last edited:
Back
Top Bottom