Resource icon

XF 1 Tip Moving xenForo SideBar from Right to Left

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,954
Points
823

Reputation:

LQD submitted a new resource:

Moving xenForo SideBar from Right to Left - CSS to move the xenForo sidebar from right to left

Just add the following CSS to EXTRA.css

Admin Control Panel -> Appearance -> Styles & Templates -> Templates ( make you it's the correct style ) -> EXTRA.css

Add the contents below and save :

Code:
.mainContainer
{
float: right;
margin-left: -{xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
width: 100%;
}
.mainContent
{
margin-left: {xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
}
.sidebar
{
@property "sidebar";
font-size: 11px;
float: left;
width...

Read more about this resource...
 
Top