PDA

View Full Version : Why did my last two buttons drop


mrjoe
Mar-15-2009, 08:40 AM
My last two button on my Nav bar Dropped. Can anybody help with getting them back up. It would be greatly appreciated Thanks








Joe
www.photographybymrjoe.com (http://www.photographybymrjoe.com)

jfriend
Mar-15-2009, 09:52 AM
You've inappropriately terminated your navbar in the middle and started a new one. In this part of your HTML, delete the lines in red:

<ul>

<li><a href="http://www.photographybymrjoe.com/Basketball">Basketball</a></li>
<li><a href="http://www.photographybymrjoe.com/Baseball">Baseball</a></li>
<li><a href="http://www.photographybymrjoe.com/Football">Football</a></li>
<li><a href="http://www.photographybymrjoe.com/Softball">Softball</a></li>



</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->

</li>
</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>

<ul>


<li><a href="/gallery/7213160_ctZJf">Pricing</a></li>

<!-- Next Main Menu Item -->

<li><a href="/gallery/7094542_jBwRB" title="Please sign our guestbook!">Guestbook</a></li>

</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->

</div>
You also should replace the "&" in the text for several of your menu items with "&amp;" For example:

<li><a href="/gallery/7591809_Pybja">R&B Junkie</a></li>

should be

<li><a href="/gallery/7591809_Pybja">R&amp;B Junkie</a></li>

You also need another </div> at the end of your menu. The <div align="center"> that is before your menu has no matching </div>.

mrjoe
Mar-15-2009, 11:13 AM
You've inappropriately terminated your navbar in the middle and started a new one. In this part of your HTML, delete the lines in red:

<ul>

<li><a href="http://www.photographybymrjoe.com/Basketball">Basketball</a></li>
<li><a href="http://www.photographybymrjoe.com/Baseball">Baseball</a></li>
<li><a href="http://www.photographybymrjoe.com/Football">Football</a></li>
<li><a href="http://www.photographybymrjoe.com/Softball">Softball</a></li>



</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->

</li>
</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>

<ul>


<li><a href="/gallery/7213160_ctZJf">Pricing</a></li>

<!-- Next Main Menu Item -->

<li><a href="/gallery/7094542_jBwRB" title="Please sign our guestbook!">Guestbook</a></li>

</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->

</div>
You also should replace the "&" in the text for several of your menu items with "&amp;" For example:

<li><a href="/gallery/7591809_Pybja">R&B Junkie</a></li>

should be

<li><a href="/gallery/7591809_Pybja">R&amp;B Junkie</a></li>

You also need another </div> at the end of your menu. The <div align="center"> that is before your menu has no matching </div>.


I now have this showing on 3 of my pages my contact, pricing and guestbook.

YE.addListener(window, 'load', function(e) { hash = window.location.href.split("#")[1]; if (hash) { if(hash.indexOf('-LB') > -1) { lbSize = findSize(hash.split('-')[1]); openLB(hash.split('-')[0],lbSize); } } }); NickName = 'photographybymrjoe'; var guestPage = false; pageType = 'Album'; pageTypeDetails = ''; pageScope = ''; pageDrawBy = ''; siteUser = 'photographybymrjoe'; community = ''; galleryStyle = 'journal'; AlbumID = '7094542'; AlbumKey = 'jBwRB'; ImageID = '454793051'; ImageKey = 'pQtYv'; webServer = 'http://www.photographybymrjoe.com';

At the top under my navbar. After the changes.


And this on the rest of them.


var webServer = 'http://www.photographybymrjoe.com'; var NickName = 'photographybymrjoe';



Joe

jfriend
Mar-15-2009, 11:45 AM
I now have this showing on 3 of my pages my contact, pricing and guestbook.

YE.addListener(window, 'load', function(e) { hash = window.location.href.split("#")[1]; if (hash) { if(hash.indexOf('-LB') > -1) { lbSize = findSize(hash.split('-')[1]); openLB(hash.split('-')[0],lbSize); } } }); NickName = 'photographybymrjoe'; var guestPage = false; pageType = 'Album'; pageTypeDetails = ''; pageScope = ''; pageDrawBy = ''; siteUser = 'photographybymrjoe'; community = ''; galleryStyle = 'journal'; AlbumID = '7094542'; AlbumKey = 'jBwRB'; ImageID = '454793051'; ImageKey = 'pQtYv'; webServer = 'http://www.photographybymrjoe.com';

At the top under my navbar. After the changes.


And this on the rest of them.


var webServer = 'http://www.photographybymrjoe.com'; var NickName = 'photographybymrjoe';



Joe

It's happening in IE, not Firefox.

You were supposed to add:

</div>

at the end of your menu. Instead, you added:

</div.

Can you fix that and see if that fixes the problem?

mrjoe
Mar-15-2009, 11:55 AM
It's happening in IE, not Firefox.

You were supposed to add:

</div>

at the end of your menu. Instead, you added:

</div.

Can you fix that and see if that fixes the problem?


That did...




Thanks

Joe