Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: SuckerTree and IE7 problem

  1. #1
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default SuckerTree and IE7 problem

    Greetings,

    Was wondering if anyone can point me to the right direction.

    I am using SuckerTree and utilizing images for the navigation. Everything is fine with different browsers except IE7 -- I am having a space problem between images.

    This link
    http://west.interactive.hodes.com/ie...l_else_ok.html
    is an image of what it looks like when viewing from
    a) Apple Safari v3.1.1 for PC
    b) Firefox v2.0.0.13 for PC and Mac
    c) Internet Explorer 6.0 for PC

    But as soon as I view it from Internet Explorer 7.0 for PC -- this is what happens
    http://west.interactive.hodes.com/ie...e_problem.html

    This link is the stylesheet for the code that I used:
    http://west.interactive.hodes.com/ie...stylesheet.css

    And the working web site with mouseOvers can be viewed from here:
    http://west.interactive.hodes.com/ie...rkingSite.html

    Would anybody know what else I can do to make it work properly on all browsers.

    Thanks in advance.

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Hmm...

    I can't tell you what's causing it but I can tell you how to fix it.

    Change
    Code:
    .suckerdiv ul li a{
    	display: block;
    	overflow: auto; /*force hasLayout in IE7 */
    	color: black;
    	text-decoration: none;
    	border-bottom: 0;
    }
    to

    Code:
    .suckerdiv ul li a{
    	display: block;
    	overflow: auto; /*force hasLayout in IE7 */
    	color: black;
    	text-decoration: none;
    	border-bottom: 0;
    	*margin-bottom:-4px;
    }

  3. The Following User Says Thank You to Medyman For This Useful Post:

    santamesa2 (04-24-2008)

  4. #3
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    ....The mess is that IE creates it's own height on the list...
    The fix is:
    Code:
    .suckerdiv ul li{
    	position: relative;
    	height:22px;
    }
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

  5. #4
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks Medyman.

    Tried your suggestion and it worked on IE7... but... every other browsers are coming out shorter.

    Here's the live link.
    http://west.interactive.hodes.com/ie...em/testFORjdo/

    Take Care.

  6. #5
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Hi rangana,

    Tried your suggestion and used 22px but 24px worked better. Had the same outcome as Medyman.

    http://west.interactive.hodes.com/ie...em/ranganaFix/

    Worked for IE7 but when I viewed from other browsers the underline in my nav images disappeared.

    Here is the css
    http://west.interactive.hodes.com/ie...stylesheet.css

    This fix is working although not quite universal.

    I don't understand how differently IE7 is handling codes from IE6.

    Thanks much for the help.

  7. #6
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Can you guys recommend other programming methods besides SuckerTree that does the same thing?

    Just a thought.

  8. #7
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Which of these two do you want us to base the fix?
    http://west.interactive.hodes.com/ie...em/ranganaFix/
    http://west.interactive.hodes.com/ie...em/testFORjdo/
    Quote Originally Posted by santamesa2 View Post
    Can you guys recommend other programming methods besides SuckerTree that does the same thing?

    Just a thought.
    ...You should decide for yourself...do you want to keep the SuckerTree or something else...
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

  9. #8
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    rangana,

    You're right -- I will stick to SuckerTree because this is where I saw that I can substitute images for the text.

    With regards to basing the fix... these links
    http://west.interactive.hodes.com/ie...em/ranganaFix/
    http://west.interactive.hodes.com/ie...em/testFORjdo/
    are just to show the outcome of the recommendations.

    My end result is, if I can, use the coding I started
    http://west.interactive.hodes.com/ie...stylesheet.css
    and have it work for all browsers.

    After doing your recommendation, I was in the assumption that, that was it. Sorry for jumping the gun.

  10. #9
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Does floating your elements instead helps
    Code:
    .suckerdiv ul li{
    position:relative;
    float:left;
    }
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

  11. The Following User Says Thank You to rangana For This Useful Post:

    santamesa2 (04-24-2008)

  12. #10
    Join Date
    Apr 2008
    Location
    California USA
    Posts
    6
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    ! ? ! ? ! ? ! ? ! ? ! ?

    clap! clap! clap! Bow! Bow! Bow!

    That was it. I had to do and redo a few times just to make sure it works.

    I have been fighting with this for a few days and you solved it in a few minutes.

    Am truly thankful.

    Take Care Rangana



    >>> Daghan salamat sa imong panabang!!! <<<

    :-)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •