PDA

View Full Version : Email added to navbar?


taat2d
Jan-22-2009, 02:46 PM
Hi is there a way to move my email from the bottom of the page uo to the far right of my navbar? My site name is

www,oughttobinpictures.com

Thanx in advance

J Allen
Jan-22-2009, 04:43 PM
Add this to remove the home page breadcrumb:

.homepage #breadcrumb {display: none;}




Add the red line to your custom header:

<div id="my_header">
<div id="my_banner"> </div>
<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/XXXXXXX_YYYYY">About Me</a></li>
<li><a href="/galleries">Galleries</a></li>
<li><a href="/gallery/XXXXXXX_YYYYY">Information</a></li>
<li><a href="/gallery/7130966_BLRpV">Guestbook</a></li>
<li><a href="mailto:%20taat2d@gmail.com">Email Me</a></li>

</ul>
</div> <!-- closes navcontainer -->

</div> <!-- closes my_header -->




If you want to remove it from the footer, just remove it from your footer box

taat2d
Jan-22-2009, 05:21 PM
Thank you, thank you, thank you!!!!:D :D

When I open a gallery on the upper left is shows my name, then the gallery name. Is there a way to remove that?

J Allen
Jan-22-2009, 05:49 PM
That is called the 'Breadcrumb'. To remove it from your whole site add this to your CSS Box:

.notLoggedIn #breadCrumbTrail {display:none;}

With that code the breadcrumb will only be visible to you, when your logged in.

Try a search for "breadcrumbs", to make sure you want to remove them from the whole site.

taat2d
Jan-22-2009, 06:09 PM
Thanx Joe. I'll start looking ito those breadcrumbs BEFORE I remove them.