Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-02-2009, 04:26 PM   PM User | #1
kyllle
Regular Coder

 
kyllle's Avatar
 
Join Date: Mar 2008
Posts: 334
Thanks: 85
Thanked 2 Times in 2 Posts
kyllle can only hope to improve
Links problems, can anyone help please?

Hi all,

Basically im in the process of creating the following site:

http://www.glen-lodge.co.uk/testing/ws/index.html

Im having problem with the 'Read More' links in the left column of the main content when viewed in firefox but the right content links work fine?

Can anyone tell me were Im going wrong?

Regards

Kyle
__________________
www.kylehouston.com

Last edited by kyllle; 05-02-2009 at 04:41 PM..
kyllle is offline   Reply With Quote
Old 05-02-2009, 04:35 PM   PM User | #2
oesxyl
Master Coder


 
Join Date: Dec 2007
Posts: 6,682
Thanks: 436
Thanked 890 Times in 879 Posts
oesxyl is a jewel in the roughoesxyl is a jewel in the roughoesxyl is a jewel in the rough
Quote:
Originally Posted by kyllle View Post
Hi all,

Basically im in the process of creating the following site:

http://www.glen-lodge.co.uk/testing/ws/index.html

Im having problem with the 'Read More' links in the left column of the main content when viewed in firefox but the right content links work fine?

Can anyone tell me were Im going wrong?

Regards

Kyle
the links stay on the same page because href is #.

best regards
oesxyl is offline   Reply With Quote
Old 05-02-2009, 04:38 PM   PM User | #3
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello kyllle,
If you add a background color to #productRight you can see what's happening.
Try this -
Code:
			
		#productRight{
			position:relative;
			margin-left:47px;
			padding: 0 5px;
background: #000;
			}
You can see you've covered your left column with #productRight so the links are not available.


A 2 column layout is typically one column floated and the other column margined over enough to allow room for the floated column. Your margin-left:47px; just isn't big enough.
Try this instead -
Code:
		#productRight{
			position:relative;
			margin-left:465px;
			padding: 0 5px;
background: #000;
			}
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote
Users who have thanked Excavator for this post:
kyllle (05-02-2009)
Old 05-02-2009, 04:40 PM   PM User | #4
kyllle
Regular Coder

 
kyllle's Avatar
 
Join Date: Mar 2008
Posts: 334
Thanks: 85
Thanked 2 Times in 2 Posts
kyllle can only hope to improve
Hey guys thanks so much for looking at my code!! yeah I was messin about with the widths earlier and totally forgot to add the correct width!!!! Thanks again!!
__________________
www.kylehouston.com
kyllle is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 02:18 AM.


Advertisement
Log in to turn off these ads.