Saturday, 14 September 2013

background image AND navigation bar border problems

background image AND navigation bar border problems

I'm VERY new to programming and am probably using a totally old way to
program my site, but so far it's been frustrating at times, but has worked
for me. Now I have 2 problems that I can't seem to fix First: background
images. I've been checking it using Chrome, but when I open the page in
IE, my background is not showing up. I've checked the syntax (some sites
seem to indicate that I needed to add spaces) and I don't see where I've
got a problem. I also tried saving the image as a png instead of jpg and
that didn't work.
Here's what my code looks like:
body {
background-image: url('images/backrings.jpg'),
url('images/backrings2.jpg');
background-position: left top, right top;
background-repeat: no-repeat;
}
Second: I'm getting a blue border around my footer navigation bar - I
don't know why and have tried everything that I can think of to get rid of
it.
Here's what the code for that looks like:
<div id="footermenu">
<ul>
<li class="first"><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="gallery.html">gallery</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
Any help would be GREATLY appreciated - thanks!

No comments:

Post a Comment