Web Design Forum: IE problems :( for my site - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

IE problems :( for my site Rate Topic: -----

#1 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 11:27 AM

Hi folks

Site in question: http://www.amazing-w...taging/devilish

Seems to be loading fine in all browser except IE , In IE the category nav is overlapping, i think its due to a negative margin thats in place to stop the categories dancing when hovered over lol, but im not sure.

Thanks for reading
Joe

Attached File(s)


0

#2 User is online   zed 

  • Web Guru
  • Group: Moderators
  • Posts: 4,941
  • Joined: 25-May 10
  • Reputation: 703
  • Gender:Male
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 16 May 2011 - 12:37 PM

remove the inline-block from #dkCatTabs UL LI A
1

#3 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 01:25 PM

Hey Zed,

This works to a degree but now the hover dont cover the whole tab, that's why i had the block lol, its still working in all other browsers lol. if i put just a display block ie wants the categories on seperate lines grrrh!!!! lol any ideas man :)

Thanks
Joe
0

#4 User is online   zed 

  • Web Guru
  • Group: Moderators
  • Posts: 4,941
  • Joined: 25-May 10
  • Reputation: 703
  • Gender:Male
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 16 May 2011 - 01:38 PM

okay, just playing and

#dkCatTabs ul li {
display: inline-block;
0

#5 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 04:10 PM

View Postzed, on 16 May 2011 - 01:38 PM, said:

okay, just playing and

#dkCatTabs ul li {
display: inline-block;



Tried this man it gives a problem with firefox when u click on long category names and it doesn't sort the problem in IE, it's pure stressfull been at this for hours lol

Joe :)
0

#6 User is offline   mteam 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,828
  • Joined: 07-November 09
  • Reputation: 247
  • Gender:Male
  • Location:Manchester
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 16 May 2011 - 04:25 PM

I may have got this wrong not exactly sure what the problem is this should get your nav displaying how I think you want it

#dkCatTabs ul li a:hover, #dkCatTabs ul li.current-cat a {
    background: url("../image/navHover_bg.png") repeat-x scroll 0 0 transparent;
    border: 1px solid #CF8E9F;
    padding: 4px;}

#dkCatTabs ul li a {
    color: #FFFFFF;
    display: block;
    font-family: 'GeosansLightRegular';
    font-size: 1.5em;
    padding: 5px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #2F2F2F;
}

#dkCatTabs ul li {
    float: left;
    list-style: none outside none;
    margin-right: 25px;
}

#dkNav {
    background: url("../image/nav_bg.png") no-repeat scroll 0 0 transparent;
    float:left;    
    padding: 0 0 0 10px;
    width: 960px;
}

This post has been edited by mteam: 16 May 2011 - 04:42 PM

1

#7 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 05:15 PM

View Postmteam, on 16 May 2011 - 04:25 PM, said:

I may have got this wrong not exactly sure what the problem is this should get your nav displaying how I think you want it

#dkCatTabs ul li a:hover, #dkCatTabs ul li.current-cat a {
    background: url("../image/navHover_bg.png") repeat-x scroll 0 0 transparent;
    border: 1px solid #CF8E9F;
    padding: 4px;}

#dkCatTabs ul li a {
    color: #FFFFFF;
    display: block;
    font-family: 'GeosansLightRegular';
    font-size: 1.5em;
    padding: 5px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #2F2F2F;
}

#dkCatTabs ul li {
    float: left;
    list-style: none outside none;
    margin-right: 25px;
}

#dkNav {
    background: url("../image/nav_bg.png") no-repeat scroll 0 0 transparent;
    float:left;    
    padding: 0 0 0 10px;
    width: 960px;
}




This is basically what i have and ie is causing the problem as usual lol
:)
0

#8 User is offline   mteam 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,828
  • Joined: 07-November 09
  • Reputation: 247
  • Gender:Male
  • Location:Manchester
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 16 May 2011 - 06:13 PM

The code I posted is not what you have
0

#9 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 06:22 PM

View Postmteam, on 16 May 2011 - 06:13 PM, said:

The code I posted is not what you have

yeh urs is the first i had i have been messing about with this all day trying to fix it lol

:)
0

#10 User is offline   mteam 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,828
  • Joined: 07-November 09
  • Reputation: 247
  • Gender:Male
  • Location:Manchester
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 16 May 2011 - 06:24 PM

What do you mean mine is the first you had

This post has been edited by mteam: 16 May 2011 - 06:52 PM

0

#11 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 16 May 2011 - 07:02 PM

The code i done myself before i posted here :)
0

#12 User is offline   mteam 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,828
  • Joined: 07-November 09
  • Reputation: 247
  • Gender:Male
  • Location:Manchester
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 16 May 2011 - 07:04 PM

I think I must be looking at the wrong thing here? this is what the code I posted does

navtest

This post has been edited by mteam: 16 May 2011 - 07:28 PM

1

#13 User is offline   joe2011uk 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 293
  • Joined: 01-December 10
  • Reputation: 11
  • Gender:Male
  • Location:Glasgow
  • Experience:Intermediate
  • Area of Expertise:I'm Learning

Posted 19 May 2011 - 05:28 PM

View Postmteam, on 16 May 2011 - 07:04 PM, said:

I think I must be looking at the wrong thing here? this is what the code I posted does

navtest



Hey sorry man missed a point that you had added got it now +1d you thanks Joe
0

#14 User is offline   mteam 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,828
  • Joined: 07-November 09
  • Reputation: 247
  • Gender:Male
  • Location:Manchester
  • Experience:Nothing
  • Area of Expertise:Nothing

Posted 19 May 2011 - 07:03 PM

Glad you got it sorted :)
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users