• Hello, have recently taken over website and want to add new pages, easy enough, but the links at the top of the page move (to accomadate new links to pages) and the first link or two is over the image.
    How can I tell it not to do this?

    Would appreciate any help anyone can offer,

    Regards,

    Charnwood BRAS

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the style.css file find

    #nav {
    
    	position: absolute;
    	right: 25px;
    	float: right;
    	text-align: right;
    	list-style: none;
    	z-index: 2;
    
    }

    and add a rule to set a width (650px should suit) so that it looks like this

    #nav {
    
    	position: absolute;
    	right: 25px;
    	float: right;
    	text-align: right;
    	list-style: none;
    	z-index: 2;
            width: 650px;
    }
    Thread Starter msvenus

    (@msvenus)

    Thank you very much xxx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Want links in header not to go over image’ is closed to new replies.