Unstoppable Domains โ€” AI Assistant

HTML Gurus - How do I edit the following code to show no underline ?

Spaceship Spaceship
Watch

gazzip

First Time Poster !VIP Member
Impact
186
Hi All - If I wanted to have NO UNDERLINE on my navigation links below what would I need to add into the code & where ?

I can offer a few NP's for the correct advice :) thanks

HTML is Gobaldy Gook to me :hehe: I'm guessing it may be in here somewhere but I don't know where or what to add
( <font size="2" face="Arial, Helvetica, sans-serif"><font size="2" face="Arial, Helvetica, sans-serif">< )

The code I need to edit is all below

<img src="images/home-bullet.gif" width="25" height="14" align="absbottom"><a href="index.html">home</a>
<br>
<font size="2" face="Arial, Helvetica, sans-serif"><font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"><a href="dubai-hotels.htm">dubai
</a></font><a href="dubai-hotels.htm">hotels</a></font> <br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="activities.htm">activities</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-attractions.htm">attractions</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-golf-courses.htm">golf
courses</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-flights-airport.htm">dubai
flights</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-car-hire.htm">car
rentals</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font>cruises
<font size="1">(coming soon)</font><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-property-real-estate.htm">dubai
property</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-links.htm">dubai
links</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="contact.htm">contact</a>
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
.US domains.US domains
HTML:
<html>
<style type="text/css">
a:link {text-decoration: none}
</style>
<img src="images/home-bullet.gif" width="25" height="14" align="absbottom"><a href="index.html">home</a>
<br>
<font size="2" face="Arial, Helvetica, sans-serif"><font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"><a href="dubai-hotels.htm">dubai
</a></font><a href="dubai-hotels.htm">hotels</a></font> <br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="activities.htm">activities</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-attractions.htm">attractions</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-golf-courses.htm">golf
courses</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-flights-airport.htm">dubai
flights</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-car-hire.htm">car
rentals</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font>cruises
<font size="1">(coming soon)</font><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-property-real-estate.htm">dubai
property</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="dubai-links.htm">dubai
links</a><br>
<font size="2" face="Arial, Helvetica, sans-serif"><img src="images/grey-bullet.gif" width="25" height="14" align="absbottom"></font><a href="contact.htm">contact</a>
The <style type="text/css">
a:link {text-decoration: none}
</style>
Makes it so therew is no uderline with links
hey for the "where or what to add
( <font size="2" face="Arial, Helvetica, sans-serif"><font size="2" face="Arial, Helvetica, sans-serif">< )"You have it twice you only need it once take this for xample
HTML:
<html>
<font size="2" face="Arial, Helvetica, sans-serif">Hello my name is _____<a href="http://www.genera3d.com"> See all you need is it once</a> unless it is different colors or something otherwise you are just adding more work
-CP
 
1
•••
Hi - CP

I did'nt quite follow that as I have'nt got much of a clue or even the basic understanding of HTML - I always use Dreamweaver and rarely mess with html

BUT

I just found this and it seems to work - what do you think of it ?

No underline on links - http://www.pageresource.com/html/link3.htm

For an Entire Page of Links
If you want every link on the page to be non-underlined, you can use a style sheet shortcut inside the <HEAD></HEAD> tags of your document.

The code looks like this:

<STYLE type="text/css">
<!--
A { text-decoration:none }
-->
</STYLE>

Place this code between your <HEAD></HEAD> tags, and then code your links normally. The style sheet in the head section will make them all non-underlined.


You rekon it will be OK ? :)

.
 
0
•••
0
•••
Thanks CP - looks like I should go back to school and learn this stuff when I can find the time :hehe: That looks like a great place to start....soooo much to learn !

Thanks for your help

.
 
0
•••
Coolprogram said:
You don't need the <head></head> tags with <style type="text/css"> I use it how it is all the time. on 2 of my sites 1 http://www.starwarsff.info the other is http://www.genera3d.com
also here is a website that can help you learn HTML PHP SQL and all of that: http://www.w3schools.com and it will work ;)
-CPB-)

Actually if you're working on desiging sites that are standards complient and follow all of the W3C standards, then you are required to have your <style> tag within the <head></head> tags.

Just check your sites at http://validator.w3.org - they return lots of errors. If you don't care about being standards complient, then this means nothing. heh
 
0
•••
Appraise.net
Domain Recover
DomainEasy โ€” Live Options
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back