• First, go to http://adamcorley.com . When you see the nav at the top (home, about, and contact), can you advise me as to how to change the color of the links? A regular HTML tag doesn’t work when calling from a template file.

    Also, when I add a banner, the nav appears on top of the image. how can I add a margin to the top of background-url: ()?

Viewing 1 replies (of 1 total)
  • can you advise me as to how to change the color of the links?

    style.css:

    #menu a:link {
    color:#FFFFFF;
    font-weight:bold;
    text-decoration:none;
    }

    how can I add a margin to the top of background-url: ()?

    You could try adding background-position:left 50px; to #masthead but, as you’ll see that will clip the bottom of the globe off.

    background-position:right top; will shift the globe over to the right – which gets it out of the way of the menu links for now. You can then stop a longer page link bar over-laying the globe image by replacing margin:0 auto; in #menu with margin:0 300px 0 0;.

Viewing 1 replies (of 1 total)
  • The topic ‘Help me with some coding.’ is closed to new replies.