Hi Folks!
I 'm customizing my template and I would like to remove
The Header ( where the main logo is) The Breadcrumb The user menu ( the one just above the breadcrumbs)
Can anyone please help me, I'm not a newby but after a many attempts I gave up... :)
thanks a lot!
|
Do I understand you correctly? You want to remove ALL site navigation menus? My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
I guess his site is for the blind, so they won't need it anyways.. OMG, Lord I apologize.. Im going straight to Haites for that one. mmm hmmm. Nothing to see here |
No, wait!
We're trying to keep our website as minimal as possible.
So, what i need to do is basically what you can see here

I only need to keep the main menu and get rid of all the rest (braidcrumb, member menu and header). The member menu links to the same pages as the main menu does.
Hope i made it clear! :)
|
anyone? I know it's esay, just don't realyy know how to do it |
Not sure this is what you want... let me know.
In the file, /templates/base/css/top_menu.css
Find:
div.subMenusContainer{ margin: 0px auto; border: 0px; }
Change to:
div.subMenusContainer{ margin: 0px auto; border: 0px; display:none; }
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
You got the key!
Thanks a lot man, my work isn't done yet , but your help was great!
|
I'm trying to remove the breadcombs element (the breadcrumbs to the left and the "Hello Guest" etc to the right). I tried houstonlively's suggestion but it hasn't worked for me. Is there a way to remove that section?
Thanks in advance!
|
I'm trying to remove the breadcombs element (the breadcrumbs to the left and the "Hello Guest" etc to the right). I tried houstonlively's suggestion but it hasn't worked for me. Is there a way to remove that section?
Thanks in advance!
If you're using a custom template, you'll need to make the necessary changes from there. Also, empty your ./cache and ./cache_public directories, leaving the .htaccess file intact.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Thanks Magnussoft but still no luck. I cleared the two cache folders you mentioned (leaving the .htaccess file intact), added "display:none;" to top_menu.css as directed and refeshed but no change - the element still displays. I'm using the standard template and the top_menu.css file for that just references the main on in 'base>css' (which was the one I changed).
What am I doing wrong?
|
Thanks Magnussoft but still no luck. I cleared the two cache folders you mentioned (leaving the .htaccess file intact), added "display:none;" to top_menu.css as directed and refeshed but no change - the element still displays. I'm using the standard template and the top_menu.css file for that just references the main on in 'base>css' (which was the one I changed).
What am I doing wrong?
Edit the general.css file under ./templates/base/css/; look for the following:
div.sys_breadcrumb {
height: 19px;
margin-top: 10px;
}
Change it to this:
div.sys_breadcrumb {
height: 19px;
margin-top: 10px; display: none;
}
Clear the cache as mentioned above, and have fun.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Magnussoft - You, sir, are freaking awesome! Thank you! |