View Full Version : removing smugmug titles and such
fotowerx
Feb-08-2007, 10:33 PM
how do you remove the heading "galleries sub categories" from my galleries page? also, how do you get rid of the backup routing info above that
ie
fotowerx>galleries>weddings>samples...
I want all of this gone to make it toatally custom looking.
www.foto-werx.com
Pupator
Feb-09-2007, 04:17 AM
Good morning!
subCatGalleryTitle is the element you're trying to remove
You can get rid of it by using
.boxTop {display:none;}
But after you do, browse around a little bit. If doing that removed some other things that you want to keep (they'd be in the same page location but on different pages), then you need to use the more specific
#subCatGalleryTitle {display:none;}
You're also asking to remove the .breadcrumb element which you can do by adding:
#breadcrumb {display:none;}
You have these lines already for removing the elements from your homepage - so if you want them gone from everywhere you can just remove the #homepage from the first two lines of your css section.
You might want to consider adding a
.loggedIn #breadcrumb {display:block;}
though, because it's nice to have the breadcrumbs when you're logged in.
fotowerx
Feb-09-2007, 07:44 AM
Good morning!
subCatGalleryTitle is the element you're trying to remove
You can get rid of it by using
.boxTop {display:none;}
But after you do, browse around a little bit. If doing that removed some other things that you want to keep (they'd be in the same page location but on different pages), then you need to use the more specific
#subCatGalleryTitle {display:none;}
You're also asking to remove the .breadcrumb element which you can do by adding:
#breadcrumb {display:none;}
You have these lines already for removing the elements from your homepage - so if you want them gone from everywhere you can just remove the #homepage from the first two lines of your css section.
You might want to consider adding a
.loggedIn #breadcrumb {display:block;}
though, because it's nice to have the breadcrumbs when you're logged in.
works great! thanks!
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.