Graphic Design Forum and Web Design Forum  

Go Back   Graphic Design Forum and Web Design Forum »Web Design Forum »CSS Forum

Notices

CSS Forum Cascading Style Sheets (CSS) and XHTML Forum


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 22-05-2008, 05:40 PM
Junior Mints Member
 
Join Date: May 2008
Gender: Male
Posts: 47
Default My images links have X's over them in IE...why?

I can't figure out why my image links in IE have X's in the upper left hand corner. First I thought it was because I used png's...but I use png's elsewhere on the site and they work fine. Then I thought it could be because I'm dropping in the images using css and the link in the html is 'empty'...check it out....

XHTML:

<div id="newslinks"> <a class="vidone" href="http://www.dionna.myxziex.com/water_pop1.php" target="_blank"></a> <a class="vidtwo" href="http://www.dionna.myxziex.com/water_pop2.php" target="_blank"></a> <a class="vidthree" href="http://www.dionna.myxziex.com/water_pop3.php" target="_blank"></a> <a class="vidfour" href="http://www.dionna.myxziex.com/water_pop4.php" target="_blank"></a> </div>

CSS:

.vidone, .vidtwo, .vidthree, .vidfour {
display: block;
height: 68px;
width: 100px;
border: solid 1px;
border-color: #07bf52;
margin-bottom: 8px;
}
.vidone:hover, .vidtwo:hover, .vidthree:hover, .vidfour:hover {
display: block;
height: 68px;
width: 100px;
border: solid 1px;
border-color: #07bf52;
margin-bottom: 8px;
}
.vidone {
background-image: url(images/vidwater1idle.png)
}
.vidone:hover {
background-image: url(images/vidwater1hov.png)
}
.vidtwo{
background-image: url(images/vidwater2idle.png)
}
.vidtwo:hover {
background-image: url(images/vidwater2hov.png)
}
.vidthree{
background-image: url(images/vidwater3idle.png)
}
.vidthree:hover {
background-image: url(images/vidwater3hov.png)
}
.vidfour{
background-image: url(images/vidwater4idle.png)
}
.vidfour:hover {
background-image: url(images/vidwater4hov.png)
}

I don't know...it has got to be something I am or am not doing...wish I could figure it out...

If anybody has any ideas let me know...here's the link to the page if you want to see for yourself:

Dionna: Life. Pure. Water.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote

  #2 (permalink)  
Old 22-05-2008, 05:43 PM
zumojuice's Avatar
100% Freshly Squeezed™
 
Join Date: Feb 2007
Location: York
Gender: Male
Posts: 3,809
Default

well you can't use png on the web for a start, but the 'x' normally means your html is looking for the file, but can't find it.
__________________
Richard Gray
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #3 (permalink)  
Old 22-05-2008, 06:42 PM
Mack's Avatar
I own the flash design thread.
 
Join Date: May 2007
Location: RI, USA
Gender: Male
Posts: 1,400
Default

well, thats kinda a false statement, you can use .png's on the web. You gotta hack it, but its possible.
__________________
"If at first you don't succeed, try again. Then quit. No use being a damn fool about it."
Mike McKenzie - Online Portfolio
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #4 (permalink)  
Old 22-05-2008, 08:38 PM
zumojuice's Avatar
100% Freshly Squeezed™
 
Join Date: Feb 2007
Location: York
Gender: Male
Posts: 3,809
Default

well ok yes... but generally it's easier to stick to jpg/gif formats...
__________________
Richard Gray
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #5 (permalink)  
Old 22-05-2008, 09:31 PM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Gender: Male
Posts: 1,847
Default

You don't have to hack anything... what do you mean? Unless you mean png with transparency in IE6?
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #6 (permalink)  
Old 23-05-2008, 10:35 AM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Leeds, England
Gender: Male
Posts: 7,414
Default

You're mis-linking your files, and as LeadMagnet said, you may encounter problems with transparency in <IE7 but that's not what's wrong here.
__________________
CSS Wizardry | “Yeah, do maggots get drunk when they bury alcoholics?”

Last edited by PR Design; 23-05-2008 at 02:32 PM. Reason: typo
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #7 (permalink)  
Old 23-05-2008, 01:26 PM
Mack's Avatar
I own the flash design thread.
 
Join Date: May 2007
Location: RI, USA
Gender: Male
Posts: 1,400
Default

Quote:
Originally Posted by LeadMagnet View Post
You don't have to hack anything... what do you mean? Unless you mean png with transparency in IE6?
Yes, Transparency. i "assumed" thats why we were using pngs. Really if your not looking for transparency, use a jpg, or a gif even.
__________________
"If at first you don't succeed, try again. Then quit. No use being a damn fool about it."
Mike McKenzie - Online Portfolio
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #8 (permalink)  
Old 23-05-2008, 03:57 PM
Junior Mints Member
 
Join Date: May 2008
Gender: Male
Posts: 47
Default

What do you mean by mis-linking? could you elaborate? I still haven't targeted the problem...
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #9 (permalink)  
Old 23-05-2008, 04:00 PM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 6,313
Default

that means your link isn't pointing to the correct file... typically when it can't find the file, it gives you a red-x. Although I think your problem is in the png.. not displaying in IE. Try converting all your png's to gif's. and updating your links to reflect that change.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #10 (permalink)  
Old 23-05-2008, 04:01 PM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Leeds, England
Gender: Male
Posts: 7,414
Default

Is it just IE that aren't showing?
__________________
CSS Wizardry | “Yeah, do maggots get drunk when they bury alcoholics?”
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
Reply


Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
CSS Links Toon General Web Design Forum 2 16-02-2008 12:04 PM
Links Web Design Geek General Web Design Forum 4 24-08-2007 10:00 AM
Top 5 links SugarSpunSister Off Topic 3 19-03-2007 04:23 PM


All times are GMT. The time now is 04:22 AM.



Estetica Design Forum's Privacy Policy
Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0