XF 2.0 How can I do this?

JoyFreak

Well-known member
As seen in the screenshot, How can I shift all that over slightly to the left so more of the right side content can be visible?

Thanks

shift.webp
 
So I figured how to move it by adding this to extra.less
.node-extra {
margin-right: 112px;
}

However, the text as you can see is still cut off. I want to extend it to the right>

showss.webp
 
First you need to shrink the main node area on the left, remove the margin you added and try the below instead, you may have to play with the values to get it right.

Code:
.node-main {
    width: 80% !important;
}
.node-extra {
    width: 300px !important;
}
 
Back
Top Bottom