Page 1 of 1

removing menu bar and page view count

PostPosted: Sat Mar 01, 2008 8:11 pm
by malinakphotography
I'd like to learn how to remove or at least hide the main menu bar from the top left hand corner of my page which directs visitors to my profile, recent, guestbook etc. (not the pbase header).

I'd also like to remove the page views count at the bottom of the page from the root gallery.

Could you someone please tell me how? I am sure I saw somewhere already how to do this but can't for the life of me figure out where it was so apologies if this is a repeated post.

Many thanks!!

http://www.pbase.com/malinakphotography

PostPosted: Fri Mar 14, 2008 8:51 am
by thetormentor
hi!

you may update your stylesheet to add this:

.gallery_hitcounts {
display: none;
}

hope that helps!

PostPosted: Fri Mar 14, 2008 9:30 am
by dang
Something like this should do the trick in your CSS to remove the navigation. There are other ways you might need to use instead, depending on your style sheet though. It's also good to add a Pbase Button back to your galleries.

Code: Select all
/* ====================================================
   

   If you borrow  from this CSS, I would appreciate
   you crediting this page.  http://www.pbase.com/arjunrc/
   Thanks.

                                -Arjun Roychowdhury
   ==================================================== */

/* --- simple code to hide the menu -- */
/* -- by arjun -- */
body table td a img { display:none;}
.thumbnails table img {display:none;}
table img {display:block;}
.display,.display img {display:block;}
.thumbnails table,.thumbnails table img, .display,p.small{
display: inline; }
body div.galleryheader table td a img {display:inline;}
body table#inline_slideshow td a img {display:inline;}

/* ----------------------------------- */

/* To take care of border-box compatibility
   issue b/w IE and FF */
* {
-moz-box-sizing: border-box;
}


Also, the hit count should only be seen by you. So, there's little reason for removing it.