[EMAIL PROTECTED] wrote:
> Thanks for the suggestions
> however is is really strange why when I apply a a href tag that the
> image it blasts complete out of the left float - (hit the MLB tab in
> FF)  

The break is being caused by unclosed a elements. It is only apparent on
the MLB tab because the image is wrapped in an a element.

Two solutions are to close all of your a elements:
        <a name="tab2" id="tab2"></a>
Or better still is to move your anchor into one of the many already
available elements, and get rid of the anchor elements:
        <span class="leftStory"  id="tab2">

As has been suggested in previous responses, please validate your code
prior to posting a question. Validation can indicate the root cause of a
problem many times. It will also show when you are incorrectly nesting
elements. In your case, using inline span elements to try and encase
block level p elements. 

Regards

Scott Swabey
Design & Development Director - Lafinboy Productions
www.lafinboy.com | www.thought-after.com



______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to