a couple of problems

This is a discussion on "a couple of problems" within the Web Page Design section. This forum, and the thread "a couple of problems are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 29th, 2008, 13:44
New Member
Join Date: Apr 2008
Location: uk, bristol
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
a couple of problems

Ive just put a site live for my mrs and ive got a few niggling problems that i could do with a bit of help with, here is the address http://www.alisonkitchen.com/

Problem 1:
the top right navigation is a <ul> floated right in a <div>. the <li>s hold the width and height properties and the <a>s are padded to place the text. In IE6 the hit area is only over the text, where as in IE7+ and FF the hit area is the entire <li>, i have found if you hold these <a>s in floated <div>s you dont get this problem, however <li> tags give you an SEO advantage. is there a way of fixing this?? the code is as follows:

html
Code: Select all
  <div id="nav">
   <ul>
    <li><a href="food_stylist_contact.html" title="contact">contact</a></li>
    <li><a href="food_stylist_portfolio.html" title="portfolio">portfolio</a></li>
    <li><a href="index.html" title="home">home</a></li>
   </ul>
  </div>
css
Code: Select all
#header ul { list-style-type : none; 
position : absolute; 
margin : 0; 
padding : 0; 
right : 23px; 
 
} 
#nav { float : right; 
 
} 
#nav a { display : block; 
background-image : url(../img/link_bg.jpg); 
background-repeat : no-repeat; 
background-position : 0 0; 
text-decoration : none; 
color : #696923; 
margin : 0; 
padding-top : 7px; 
padding-bottom : 20px; 
text-align : center; 
font-size : 14px; 
 
} 
#nav a:hover { background-position : -140px 0; 
 
} 
#nav li { margin : 0; 
padding : 0; 
float : right; 
width : 139px; 
height : 43px; 
 
}
problem 2:
occastionally a blank line appears at the top of the main content box, scrolling or refreshing normally fixes it. Ive tested it on a couple of computers and managed reproduce it. it seems to only occur on the home page.

any ideas??

cheers
Reply With Quote

  #2 (permalink)  
Old Apr 29th, 2008, 13:45
New Member
Join Date: Apr 2008
Location: uk, bristol
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: a couple of problems

oops wrong URL - http://www.alisonskitchen.com/ is better...
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
A couple of issues I need help with please Johnathan Web Page Design 7 Mar 15th, 2008 17:57
A couple of problems in IE7, Opera and possibly IE6 too? blizeH JavaScript Forum 3 Jun 19th, 2007 10:11
A couple of problems in IE7 (possibly IE6 too?) blizeH Web Page Design 4 Jun 15th, 2007 08:35
going beyond a couple of <br />'s cosmicbdog Web Page Design 15 May 25th, 2007 13:08
A couple of bugs Ryan Fait Web Page Design 6 Jan 12th, 2007 23:32


All times are GMT. The time now is 00:25.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43