JoyFreak Well-known member Jan 20, 2018 #1 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
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
JoyFreak Well-known member Jan 20, 2018 #2 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> Upvote 0 Downvote
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>
Bryan Active member Jan 20, 2018 #3 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; } Upvote 0 Downvote
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; }
Bryan Active member Jan 20, 2018 #5 It's not ideal, really it should be adjusted in the templates (it uses a calc) but it's a dirty fix Upvote 0 Downvote
JoyFreak Well-known member Jan 20, 2018 #6 Can't find it anywhere, and it looks ok to me in the forum view. Upvote 0 Downvote