I have a nav list in the header which i’m ok with the positioning but the footer nav element is on the right and i’m struggling to shift it over to the left. any help would be greatly appreciated. here is the html and css. If anything else looks wrong, please let me know:
I noticed a few things that may help when you’re using CodePen.
Remove the <head> section from the HTML section and go into Settings -> HTML -> Stuff for <head> and place this link <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> in it.
Remove the link to site.css all together since you can’t link to a local file from the pen
Either remove this line in your css background: url(Pictures/74H.jpg) center; or find a web linked version of it since it’s also attempting to link to a local file that doesn’t exist.
You have a class named ul. Just an FYI that it’s bad practice to name a class the same as an element. It could make it confusing and difficult to troubleshoot issues.
The HTML section of the pen is used as the <body> portion of the site you’re trying to build so any local links won’t work and any links to stylesheets will override anything that you have in your CSS section.