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
Making a link not highlight
Old 09-01-2009, 08:32 PM Making a link not highlight
Average Talker

Posts: 27
Trades: 0
Whenever I use <a href> and link to whatever it is its always in blue. I do not mind that in text cause it helps out to pick out where link is. But I wanted to make a menu bar on top of my page and wanted to make pictures so that they would be one beside eacch other. But even after when I made cellpadding and cellspacing="0" it still had this blue line around the image that was <a href>
Is there any way to do something like
<a href="forum/page1.php" target="_blank">
<img src="buy_sell.jpg"></a>
without having the image being highlighted in blue? and then purple once you clicked it. I mean I just want the blue line around gone out of sight.
__________________
Those who can: learn. Those who can't: teach.
Cinatas is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-01-2009, 08:45 PM Re: Making a link not highlight
Super Talker

Posts: 101
Trades: 0
The links are inheriting styles from a parent element. Post a link to the site in question and I can take a look at it.
Towhid is offline
Reply With Quote
View Public Profile
 
Old 09-01-2009, 08:59 PM Re: Making a link not highlight
Average Talker

Posts: 27
Trades: 0
I did not create a parent element, and neither did I make any links to the .css since I have none.
This is what I meant
Untitled.jpg
And I am trying to get rid of the blue lines so it looks like they are attached, but by clicking one u go to one link and clicking the other u go to other link.
code I used is simply

<tr>
<td width="147" height="67"><a href="forum/page1.php" target="_blank">
<img src="buy_sell.jpg"></a></td>
<td width="147" height="67"><a href="forum/page1.php" target="_blank">
<img src="forum.jpg"></a></td>
<td width="147" height="67">v67h147 Bar link</td>
<td width="147" height="67">v67h147 Bar link</td>
<td width="147" height="67">v67h147 Bar link</td>

That is all. Thanks for all your help.
__________________
Those who can: learn. Those who can't: teach.
Cinatas is offline
Reply With Quote
View Public Profile
 
Old 09-01-2009, 09:18 PM Re: Making a link not highlight
Super Talker

Posts: 101
Trades: 0
Try these:

<a href="forum/page1.php" target="_blank">
<img src="buy_sell.jpg" style="border: none"></a>

<a href="forum/page1.php" target="_blank">
<img src="forum.jpg" style="border: none"></a>
Towhid is offline
Reply With Quote
View Public Profile
 
Old 09-01-2009, 10:23 PM Re: Making a link not highlight
Average Talker

Posts: 27
Trades: 0
works like a charm thanks a lot. never knew about style border thing.
Thanks again
__________________
Those who can: learn. Those who can't: teach.
Cinatas is offline
Reply With Quote
View Public Profile
 
Old 09-02-2009, 05:40 AM Re: Making a link not highlight
thefandango's Avatar
Extreme Talker

Posts: 215
Trades: 0
no border is the way
__________________

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

thefandango is offline
Reply With Quote
View Public Profile
 
Old 09-02-2009, 07:04 AM Re: Making a link not highlight
Junior Talker

Posts: 1
Name: Frank
Trades: 0
This can be done also by CSS also.
__________________

Please login or register to view this content. Registration is FREE
projsytro is offline
Reply With Quote
View Public Profile Visit projsytro's homepage!
 
Old 09-02-2009, 10:43 AM Re: Making a link not highlight
Junior Talker

Posts: 1
Name: Alahad
Trades: 0
Quote:
Originally Posted by projsytro View Post
This can be done also by CSS also.
i m agree with you ... it is very easy by using CSS
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
Alahad is offline
Reply With Quote
View Public Profile
 
Old 09-02-2009, 11:04 AM Re: Making a link not highlight
Super Talker

Posts: 101
Trades: 0
Yes, with CSS all you have to do is put this somewhere in your style sheet and all linked images will not have a border:

img {
border: none;
}

and if you don't use an external style sheet just put this inside your head section:

<style type="text/css">
img {
border: none;
}
</style>

This way you don't have to add the border none to each image individually but the rule will apply to all images on the page.
Towhid is offline
Reply With Quote
View Public Profile
 
Old 09-02-2009, 12:13 PM Re: Making a link not highlight
Average Talker

Posts: 27
Trades: 0
Whoa thanks a lot I was actually was having few problems with that, but now it works ^^
Thanks a lot everyone
__________________
Those who can: learn. Those who can't: teach.
Cinatas is offline
Reply With Quote
View Public Profile
 
Old 09-02-2009, 02:16 PM Re: Making a link not highlight
daniela27's Avatar
Junior Talker

Posts: 2
Name: Cookie Crane
Location: Philippines
Trades: 0
And I suggest that you watch the HTML tutorial in Youtube. I learn a lot from them. Especially in managing your links.
__________________
Discover the
Please login or register to view this content. Registration is FREE
difference

Follow me on
Please login or register to view this content. Registration is FREE
daniela27 is offline
Reply With Quote
View Public Profile Visit daniela27's homepage!
 
Old 09-02-2009, 11:54 PM Re: Making a link not highlight
cindyfowler's Avatar
Ultra Talker

Posts: 351
Trades: 0
Quote:
Originally Posted by Towhid View Post
Try these:

<a href="forum/page1.php" target="_blank">
<img src="buy_sell.jpg" style="border: none"></a>

<a href="forum/page1.php" target="_blank">
<img src="forum.jpg" style="border: none"></a>
this is one great method to resolve it ,in fact,if you use dreamweaver to build website,it is more easy ,you can choose CSS mode and select coresponding style,i think i quoted answer is available,but dont forget add ,<style></style>at the beginning and ending.
if you it is text not picture ,the operating mothed is similar.good luck...

Last edited by cindyfowler; 09-02-2009 at 11:56 PM..
cindyfowler is offline
Reply With Quote
View Public Profile
 
Old 09-03-2009, 01:06 AM Re: Making a link not highlight
goldpower's Avatar
Novice Talker

Posts: 6
Name: Pankaj
Trades: 0
Quote:
Originally Posted by Towhid View Post
Try these:

<a href="forum/page1.php" target="_blank">
<img src="buy_sell.jpg" style="border: none"></a>

<a href="forum/page1.php" target="_blank">
<img src="forum.jpg" style="border: none"></a>

This is the right way. But it can be done by css also.

it would be better for u do it with css and ID for it.

#img a
{
border:none;
}
__________________

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

goldpower is offline
Reply With Quote
View Public Profile Visit goldpower's homepage!
 
Old 09-09-2009, 01:55 AM Re: Making a link not highlight
Junior Talker

Posts: 2
Name: darren alex
Trades: 0
Hi...
I read you post, you can use target and border tag to do this, a href tag not preferring color tag.but u can user target link color and border tag, You can also change in Browser setting. Thanks for sharing information.
__________________

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



Last edited by darrenalex; 09-09-2009 at 01:58 AM..
darrenalex is offline
Reply With Quote
View Public Profile
 
Old 09-09-2009, 07:54 AM Re: Making a link not highlight
Experienced Talker

Posts: 32
Name: shozib ali
Trades: 0
Thankss for helpingg.. this helps me alot..
__________________

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


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


Please login or register to view this content. Registration is FREE
shozib is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Making a link not highlight
 

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.88322 seconds with 13 queries