This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
OMGosh I'm going crazy, please help!

Okay I hope I can explain this so it is understandable. First of all, if you go to my site, the 1st page has the words "Home","services", and "about" above the navagation buttons, which is not where I want it, and the navagation buttons where the words should be is empty. Then the "about" link works (still need to make changes to the text in the page), but it goes to the left and none of the images are there. Then also, I can't get the other links on the navagation buttons to work. Can someone help me please?
Thank you much!

Re: OMGosh I'm going crazy, please help!

You have a relatively simple error. Your menu code looks like the following. Note that the text for the "Services" link is outside the link structure. This is throwing off the rest of the menu links.



Adjust the menu to look like the following. Note that I have also included the "class" setting in the "Home" link. This setting provides a green highlight for the active page which turns the button green. The setting should be moved, bases on which page is displaying. This helps remind the visitor which page they are on. Of course, you can leave it out if you don't want the highlight.



You may also want to make a slight adjustment to the "images642/default.css" file. Because your menu entries break into two lines, the characters are a little low in the boxes. You can adjust the "padding" in the "menu a" style definition to move it up a little bit. See the highlighted entry below.

#menu a {
display: block;
float: left;
width: 109px;
height: 45px;
padding: 14px 0 0 0;
border-left: 1px solid #EDEBD5;
text-transform: lowercase;
text-decoration: none;
text-align: center;
font-size: 144%;
color: #BABABA;
}

Re: OMGosh I'm going crazy, please help!

yayyy!!! I'm so happy Philo, it works now! Thank you so much for your help!