|
|
| Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate. |
|
|||||||
| TouchArcade.com - iPhone Game Reviews and News |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
macrumors member
Join Date: Jan 2008
Location: Leeds, UK
|
Link problem with one area in Safari, fine in IE
Hi there,
I've been editing some CSS to effect some links on my website. I now have the look and feel I was after, but the links have stopped working under Safari on my Mac. They work fine on my Windows PC using Internet Explorer. I have no idea why, the code looks fine to me, does anyone have any suggestions? It's these links Latest Software | Reviews | Forum | About | Contact | Follow on Twitter on this page http://www.pocketpcsoft.net/ Thanks in advance, Greg |
|
|
|
|
|
#2 |
|
Demi-God (Moderator)
Join Date: Oct 2002
Location: The Bamboo Forest
|
They don't seem to work on Firefox 3.5.2 either in Windows (although I have a few mods installed). You might have some luck debugging from there.
__________________
Ban violins in video games now! |
|
|
|
| SilentPanda |
| View Public Profile |
| Find More Posts by SilentPanda |
|
|
#3 |
|
macrumors 601
Join Date: Aug 2005
Location: Ohio
|
The #content part is sitting on top of your floating #nav. If you add clear:both to #content you'll see it fixes the problem. Though, it will also move the content down farther. There's various ways to go about remedying, but hopefully knowing the cause will help you move forward.
|
|
|
|
|
|
#4 | |
|
Thread Starter
macrumors member
Join Date: Jan 2008
Location: Leeds, UK
|
Quote:
The actual block of CSS looks as follows, could the postion:relative be the underlying issue? As you can tell I am new to CSS ![]() Code:
#content {
clear:both;
position:relative;
width:985px;
margin:0 auto;
padding:0 24px
}
|
|
|
|
|
|
|
#5 | |
|
macrumors 601
Join Date: Aug 2005
Location: Ohio
|
Quote:
The relative positioning isn't causing the problem, it's that the nav is being floated, and when that's done the rest of the layout changes its behavior. You should read through a couple CSS float tutorials to get a better understanding of how they are used. |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|