[Solved]Need help moving Dropdown menu.
Hello, this is my first post here.I've recently made a website just for my testing purpose as I just started and have a lot of interest in html and php.And it's my first attempt on making any of those.
So here is what I need help with.If you go to this site
Coming Soon !
You can see that my dropdown menu bar is stick to the left.
Do you guys have any idea how to center it?
And, do you have any tutorial with the basic of dreamweaver and html?
I appreciate your replies.
Re: Need help moving Dropdown menu.
Set a width to the menu container div and margin:auto;
Re: Need help moving Dropdown menu.
Quote:
Originally Posted by
EliteGM
Set a width to the menu container div and margin:auto;
Code:
<div id="navMenu" style="width:auto;">
Not working, sorry I'm so new to this.
Can you be a little bit specific? >.<
Have been searching the internet for a hour.
Re: Need help moving Dropdown menu.
<div id="navMenu" style="width: 1200px; margin: auto;">
Set the width to what it needs to be.
Re: Need help moving Dropdown menu.
Still, nothing happened. Dx
Re: Need help moving Dropdown menu.
Try this
Quote:
<div id="navMenu" style="width: 1200px; margin-left: auto; margint-right: auto;">
and be shure the id navMenu has nothing declared in the css regarded to margin
Re: Need help moving Dropdown menu.
Quote:
Originally Posted by
EliteGM
<div id="navMenu" style="width: 1200px; margin: auto;">
Set the width to what it needs to be.
Yup it works :D
Thanks!