1

On this site, this text "Dog sitting allows your dog to stay at home in a relaxed and familiar environment while you're away." is supposed to be higher, next to the photo.

Any idea how to get the text to be up next to the image where it's supposed to be?

CSS:

#top { height:400px; width:1024px; } #textright { float:right; clear:both; width:300px; } 

Thank you,

Tara

6
  • give a width property to your #top div Commented Jun 6, 2011 at 17:37
  • It looks alright in Firefox 4, what browser do you use? Commented Jun 6, 2011 at 17:38
  • @calle I'm using Chrome @ibu Nope, that didn't make a difference - but thanks Commented Jun 6, 2011 at 17:39
  • I was using Firebug in Firefox 4 and it looks like the description is still in #top. However, it looks like your #list-nav is hidden. I couldn't find it anywhere. Commented Jun 6, 2011 at 17:39
  • @bryce Sorry, I don't know why that would be...? It's pretty basic HTML & CSS. Commented Jun 6, 2011 at 17:41

3 Answers 3

1

Remove the 16px margin as follows:

div#textright>p:first-child { margin-top: 0; } 
Sign up to request clarification or add additional context in comments.

3 Comments

Cannot load you page in any browser except IE9!
I can load it in Safari and Chrome
just remove clear: both from #textright. By the way your site is changing a lot and it is very difficult to troubleshoot it when the code changes.
1

Add float:left to the dog image

and add clear:both; to ul#list-nav

Comments

1

It's happening because it's floating, and the dog picture doesn't leave any room for it.

If you add float:left to the dog picture, remove the width:390px; from #textright, and add clear:both or float:left to the UL, it works nice.

1 Comment

This made the Navi better but still didn't put the text in the same place - Thanks though

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.