Try 3 divs. One div is the main wrapper div with a set width as required for holding image and links. Wrap image/link and menu in their own divs. Float one left, one right. Center main wrapper with:
It looks good but its still getting cut off - the font is too big and wont change when a alter the font size in the code you provided. Plus the contact link is cut off
It looks good but its still getting cut off - the font is too big and wont change when a alter the font size in the code you provided. Plus the contact link is cut off
Thank you for all the help guys I REALLY appreciate it. Turns out, I added an extra menu button that wasn't there before which is why the margins seemed all screwed up. I couldn't remember changing the margins, so it dawned on me that I never had a home button! Haha, stupid mistake.
I do have one more question however,
When I change something in the CSS script, say - the hover over color for the menu, it only changes for ever other page.
For instance, it will do the hover over on the home page, but if I click rentals, the hover over is gone. If I click a different page, the hover over is back. Its the same if I change the font in the css for the menu. It will change on one page but not for the other.
It looks good but its still getting cut off - the font is too big and wont change when a alter the font size in the code you provided. Plus the contact link is cut off
Thank you for all the help guys I REALLY appreciate it. Turns out, I added an extra menu button that wasn't there before which is why the margins seemed all screwed up. I couldn't remember changing the margins, so it dawned on me that I never had a home button! Haha, stupid mistake.
I do have one more question however,
When I change something in the CSS script, say - the hover over color for the menu, it only changes for ever other page.
For instance, it will do the hover over on the home page, but if I click rentals, the hover over is gone. If I click a different page, the hover over is back. Its the same if I change the font in the css for the menu. It will change on one page but not for the other.
Why is this?
Order matters. If "a:active" precedes "a:hover", the effects in "a:hover" will take precedence. So, in this example, you would not see the color change when the user clicks down on a link.
link - this is a link that has not been used, nor is a mouse pointer hovering over it
visited - this is a link that has been used before, but has no mouse on it
hover - this is a link currently has a mouse pointer hovering over it/on it
active - this is a link that is in the process of being clicked
Interesting - The order I have seems correct though. Its the same thing for the text size. If I change it, it only applies to certain pages, not all of them
Interesting - The order I have seems correct though. Its the same thing for the text size. If I change it, it only applies to certain pages, not all of them
If the CSS is not affecting every page as you want, then either the pages that use the CSS file do not have the same id/class as the CSS file or the path to CSS file is incorrect. Also, you may not have a link to the CSS file at all on some pages. Not sure what exactly is causing the problem, but you may have to carefully check the HTML files that are not being styled against the actual CSS file. Most problems occur when the link path is incorrect in relation to the file needing the CSS and where the CSS file actually is.
Bookmarks