Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Link Bounces On Mouse Over
Old 07-10-2006, 09:28 PM Link Bounces On Mouse Over | Problem Resolved
Average Talker

Posts: 16
Trades: 0
Hi all,

i have a problem with one of my web pages.It has a link to another page and when you place the mouse over the link to click it, it jumps in and out (left to right).

The best way to describe it is see it.

http://dfwcomputer.tripod.com/

click on products on the left and then try to click "Click Here" in the middle of the page.

I am using Firefox since version 0.8 i think and am currently using v1.5
It also does not seem to happen in I.E.

Thanks
Dean

Last edited by dfwcomputer; 07-11-2006 at 09:43 PM.. Reason: Problem Solved
dfwcomputer is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-11-2006, 02:17 AM Re: Link Bounces On Mouse Over
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
I'm not 100% certain, but I think it may just be the font-weight:bold you're applying to the hover. I know it sees minor, but it does make the text slightly larger which could be throwing things off if your widths are really tight.

When I took the bold off the hover it didn't seem to be moving around for me. Easy enough to test and see if that's the problem.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 07-11-2006, 08:28 PM Re: Link Bounces On Mouse Over
Average Talker

Posts: 16
Trades: 0
Quote:
Originally Posted by vangogh
I'm not 100% certain, but I think it may just be the font-weight:bold you're applying to the hover.
Thanks for the reply but i couldn't find any bolding that had been applied.Thanks all the same but would never have thought of that.

What i did find was;

Code:
<td colspan="3">
<table width="100%" class="Border-0px" cellpadding="0" 
cellspacing="0" style="border-collapse: collapse">
Do you know if "border-collapse: collapse" is supported in firefox.This seems to something to do with it i think.

Is there some sort of guidelines as to what is supported and what is not, as the page displays as "Valid xhtml".One would of thought that tags that are not compatible with certain browsers would render the page "non-valid xhtml".

Just guessing here of course.

Below is a link to the full source code.

Thanks
Dean
Attached Files
File Type: txt source.txt (9.2 KB, 3 views)

Last edited by dfwcomputer; 07-11-2006 at 08:29 PM..
dfwcomputer is offline
Reply With Quote
View Public Profile
 
Old 07-11-2006, 08:41 PM Re: Link Bounces On Mouse Over
Silent77's Avatar
Ultra Talker

Posts: 269
Name: Silent
Location: Ohio
Trades: 0
Vangogh is right... on main.css instead of
Code:
a:link {
    color: #0033FF;
    text-decoration: none;
}
a:visited {
    color: #0033FF;
    text-decoration: none;
}
a:hover {
    font-weight: bold;
    color: #0033FF;
    text-decoration: underline;
use this
Code:
a:link {
    color: #0033FF;
    text-decoration: none;
}
a:visited {
    color: #0033FF;
    text-decoration: none;
}
a:hover {
    color: #0033FF;
    text-decoration: underline;
font-weight: bold; on the hover is making it bold, which makes it move.

Hope This Helps
__________________
Firefox
rediscover the web

Please login or register to view this content. Registration is FREE
Down with internet explorer!

Last edited by Silent77; 07-11-2006 at 08:44 PM..
Silent77 is offline
Reply With Quote
View Public Profile Visit Silent77's homepage!
 
Old 07-11-2006, 08:46 PM Re: Link Bounces On Mouse Over
colochris's Avatar
Ultra Talker

Posts: 379
Trades: 0
I was also going to ask if the css was messed up. I have had the same problem that my hover would be in bold, and being that my words were long, as they were put into bold, they would bounce into the next line and mess everything.

Nice catch everyone
__________________

Please login or register to view this content. Registration is FREE
colochris is offline
Reply With Quote
View Public Profile
 
Old 07-11-2006, 09:24 PM Re: Link Bounces On Mouse Over
Novice Talker

Posts: 10
Name: Cody Singsaas
Trades: 0
The reason is that must have defined in your style sheet that on mouseover the font is made to be bold. That is undoubtably your problem.
__________________
IE Internet Solutions / Cody Singsaas (President)

Please login or register to view this content. Registration is FREE
from a trusted provider

URL
Please login or register to view this content. Registration is FREE
/ Email
Please login or register to view this content. Registration is FREE
csingsaas is offline
Reply With Quote
View Public Profile
 
Old 07-11-2006, 09:42 PM Re: Link Bounces On Mouse Over
Average Talker

Posts: 16
Trades: 0
That fixed the problem... forgot about style sheet.


Thanks vangogh you were right, much appreciated.

Also thanks silent77

Problem Resolved

Dean
dfwcomputer is offline
Reply With Quote
View Public Profile
 
Old 07-11-2006, 11:28 PM Re: Link Bounces On Mouse Over
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
Glad to help. Here's a css reference with browser support from W3Schools. There are probably better ones, but all I seemed to be finding now were out of date support charts.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 07-12-2006, 01:41 AM Re: Link Bounces On Mouse Over
Average Talker

Posts: 16
Trades: 0
Much appreciated

Thanks
dfwcomputer is offline
Reply With Quote
View Public Profile
 
Old 07-20-2006, 08:59 PM Re: Link Bounces On Mouse Over
Average Talker

Posts: 16
Trades: 0
I seem to be attracting problems (guess I’m just good )

I have another problem I’ll keep posting here as it's the same website.

On the services page I have >Top links so that you can instantly go to top of page. In firefox when you click on them the page shrinks right down. It is as if the borders just collapse. Any ideas would be greatly appreciated.

Also it is only in firefox that it happens.
Attached Files
File Type: txt services_source.txt (17.3 KB, 2 views)
dfwcomputer is offline
Reply With Quote
View Public Profile
 
Old 07-20-2006, 11:07 PM Re: Link Bounces On Mouse Over
mgraphic's Avatar
Truth Seeker

Latest Blog Post:
JAMISONTUNES
Posts: 2,918
Name: Keith Marshall
Location: Connecticut
Trades: 0
I don't know - unless the floats are messing it up. You don't need float: right to align text to the right. Using text-align: right; should be suffencient, but I'm unsure if that will solve your problem.
__________________

<mgraphic /> - I don't have a solution but I admire the problem.
mgraphic is offline
Reply With Quote
View Public Profile
 
Old 07-21-2006, 04:01 PM Re: Link Bounces On Mouse Over
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Might help if you gave us the CSS to go with it.
I use the "top" method on several things and I've never seen this behavior. Doesn't appear to be in the HTML that I can see, so it has to have something to do with the CSS being used.

BTW.. here's a better way to make semantic anchors:
http://bitesizestandards.com/bites/c...mantic-anchors
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Last edited by LadynRed; 07-21-2006 at 04:10 PM..
LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-21-2006, 10:40 PM Re: Link Bounces On Mouse Over
Average Talker

Posts: 16
Trades: 0
I have included the CSS as requested.

Quote:
Originally Posted by LadynRed
BTW.. here's a better way to make semantic anchors:
http://bitesizestandards.com/bites/c...mantic-anchors
Thanks i will check it out.

i will also try the text-align right as suggested
Attached Files
File Type: txt css.txt (3.4 KB, 2 views)

Last edited by dfwcomputer; 07-21-2006 at 10:41 PM..
dfwcomputer is offline
Reply With Quote
View Public Profile
 
Old 07-22-2006, 12:52 PM Re: Link Bounces On Mouse Over
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Ok, I've been playing around with your files. This is one of the weirder things I've seen and haven't found the answer yet.

You definitely need to do some code cleanup. Get those styles into your external stylesheet, dump the tables, dump the <font> and other deprecated tags, and use the CSS to control spacing so you can get rid of all those <br>'s. All your text needs to be inside <p> tags too.

If I can figure this out, I'll post back.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Link Bounces On Mouse Over
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.22598 seconds with 13 queries