imthebest Well-known member Nov 20, 2014 #1 Hi, When viewing albums or media from a user you see a sidebar at the left which contains 2 blocks: 'Media Navigation' and 'Albums' I'd like to get rid of that sidebar. Is that doable with CSS? Thanks, Super120
Hi, When viewing albums or media from a user you see a sidebar at the left which contains 2 blocks: 'Media Navigation' and 'Albums' I'd like to get rid of that sidebar. Is that doable with CSS? Thanks, Super120
Chris D XenForo developer Staff member Nov 20, 2014 #2 Code: .xengallery_media_user .xengalleryContainer { float: none; margin-left: 0px; } .xengallery_media_user .xengalleryContainer .insideContainer { margin-left: 0px; } .xengallery_media_user .container .xengallerySideBar { display: none; } That removes it from the user's media page. Upvote 0 Downvote
Code: .xengallery_media_user .xengalleryContainer { float: none; margin-left: 0px; } .xengallery_media_user .xengalleryContainer .insideContainer { margin-left: 0px; } .xengallery_media_user .container .xengallerySideBar { display: none; } That removes it from the user's media page.
imthebest Well-known member Nov 20, 2014 #3 I added the code snippet to EXTRA.css and now the block is gone from pages like gallery/users/username.123/ however it is still on pages like gallery/users/username.123/albums and gallery/add pages Is there a way to remove the left sidebar globally? Upvote 0 Downvote
I added the code snippet to EXTRA.css and now the block is gone from pages like gallery/users/username.123/ however it is still on pages like gallery/users/username.123/albums and gallery/add pages Is there a way to remove the left sidebar globally?
Chris D XenForo developer Staff member Nov 20, 2014 #4 Code: .Public .xengalleryContainer { float: none; margin-left: 0px; } .Public .xengalleryContainer .insideContainer { margin-left: 0px; } .Public .container .xengallerySideBar { display: none; } That should do it globally. Upvote 0 Downvote
Code: .Public .xengalleryContainer { float: none; margin-left: 0px; } .Public .xengalleryContainer .insideContainer { margin-left: 0px; } .Public .container .xengallerySideBar { display: none; } That should do it globally.
drastic Well-known member Aug 5, 2015 #5 Hey @Chris D - is there an updated code to remove the sidebar from the media page? I plugged the global code into extra.css, but it placed the sidebar on the bottom of the page instead of hiding it. thanks! Upvote 0 Downvote
Hey @Chris D - is there an updated code to remove the sidebar from the media page? I plugged the global code into extra.css, but it placed the sidebar on the bottom of the page instead of hiding it. thanks!