Wordpress make Main Menu wide

You can change the look of any website using the css style sheet. Tell you what buddy. Shoot me the link of your site and I will tell you what to edit to make the menu full screen. Ill just post the code in a code block for you. I can not tell you what to change by simply looking at your CSS file...... I have about 15 years experience as a web developer. Shoot me your link and I'll try to help you.
Here is my site link
www.pakjobscenter.com
 
Hey buddy. I found your issue!

Look at this code here:

Code:
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
    text-transform: uppercase;
    margin: 26px 0 0 25px;
    max-width: 750px;
}

You can clearly see here that your menu Ul. Which means un ordered list. Basically your nav menu. Is set to a max width of 750px. Simpy set that to a larger number. I personally recommend 100%. Attached is a screen shot after I adjusted it in the console. Never mind I cant insert an image.
 
I am more than willing to log in ur site and fix this issue for you. This is an uber easy fix. I am more than willing to do this FREE of charge. I do not mind helping you at all.
 
Basically op here is what you do.

Step 1) Locate this block of code in your CSS:

Code:
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
    text-transform: uppercase;
    margin: 26px 0 0 25px;
    max-width: 750px;
}

Step 2) Change this line:
Code:
max-width: 750px;

To This:

Code:
max-width: 100%;


Done deal! I hope I have helped you at least a little!
 
Basically op here is what you do.

Step 1) Locate this block of code in your CSS:

Code:
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
    text-transform: uppercase;
    margin: 26px 0 0 25px;
    max-width: 750px;
}

Step 2) Change this line:
Code:
max-width: 750px;

To This:

Code:
max-width: 100%;


Done deal! I hope I have helped you at least a little!
Thanks Alot Bro Problem Solved <3
I changed max width to 1200px and problem solved :D
Once Again Thanks Alot
 
I just want you to keep in mind, even tho that fixed the problem for you, it did not for me. I have a screen wider than 1200px. That is why the 100% is a better setting. I know most people do not have screens as large as me, but for a professional website such as yours, you need to use percentages and not fixed px settings. Just my two cents worth.
 
I just want you to keep in mind, even tho that fixed the problem for you, it did not for me. I have a screen wider than 1200px. That is why the 100% is a better setting. I know most people do not have screens as large as me, but for a professional website such as yours, you need to use percentages and not fixed px settings. Just my two cents worth.
Great I will set it too 100%
Thanks Buddy :)
+rep
 
Back
Top