gavpeds Active member Apr 15, 2016 #1 I would like to remove the sidebar on main forum index including visitor panel. How can i achieve this?
I would like to remove the sidebar on main forum index including visitor panel. How can i achieve this?
wang Well-known member Apr 15, 2016 #2 Add this bit of code to the EXTRA.css template of the style that you are using as default. HTML: .sidebar { display: none; } .mainContent { margin-right: 0; } Upvote 0 Downvote
Add this bit of code to the EXTRA.css template of the style that you are using as default. HTML: .sidebar { display: none; } .mainContent { margin-right: 0; }
Steve F Well-known member Apr 15, 2016 #3 If you don't plan on using any of it I would simple comment out where it is first called which would be in the PAGE_CONTAINER template. CSS will just hide but the data still loads. Upvote 0 Downvote
If you don't plan on using any of it I would simple comment out where it is first called which would be in the PAGE_CONTAINER template. CSS will just hide but the data still loads.
gavpeds Active member Apr 15, 2016 #4 wang said: Add this bit of code to the EXTRA.css template of the style that you are using as default. HTML: .sidebar { display: none; } .mainContent { margin-right: 0; } Click to expand... Perfect thanks. Upvote 0 Downvote
wang said: Add this bit of code to the EXTRA.css template of the style that you are using as default. HTML: .sidebar { display: none; } .mainContent { margin-right: 0; } Click to expand... Perfect thanks.
wang Well-known member Apr 15, 2016 #5 gavpeds said: Perfect thanks. Click to expand... You are welcome sir. Upvote 0 Downvote
gavpeds Active member Apr 16, 2016 #6 Out of curiosity is there any css trickery like this that could make the sidebar show under the forum? You know like members online, stats etc Upvote 0 Downvote
Out of curiosity is there any css trickery like this that could make the sidebar show under the forum? You know like members online, stats etc
wang Well-known member Apr 16, 2016 #7 I do not think that that can be done with css only. Template changes would be required too. Upvote 0 Downvote