PDA

View Full Version : Link Page


Picturesofthelowcountry
Feb-08-2009, 09:01 AM
I have a friend with a website and i would like to link to his page. Is it possible to use graphics from his site like a clickable banner on my site to navigate to his site. I plan on having a links Dropdown on my Navbar and was wondering if this is possible.
Thanks MIke

tfboy
Feb-08-2009, 04:32 PM
Hi Mike. Sorry, I'm not sure I understand.
You can put a link in your Links drop down menu.

In your html header, where you have

<li><a href="#link" title="cool stuff">Friends</a></li>
<li><a href="#link" title="More Cool Stuff">More Cool Stuff</a></li>
<li><a href="www.myfriendssite.com" title="My Friend's cool site"</a></li>

Add the line in red.

Or do you mean substituting the text with a mini banner / icon the size of the drop down text box?

jfriend
Feb-08-2009, 05:18 PM
Hi Mike. Sorry, I'm not sure I understand.
You can put a link in your Links drop down menu.

In your html header, where you have

<li><a href="#link" title="cool stuff">Friends</a></li>
<li><a href="#link" title="More Cool Stuff">More Cool Stuff</a></li>
<li><a href="www.myfriendssite.com" title="My Friend's cool site"</a></li>
Add the line in red.

Or do you mean substituting the text with a mini banner / icon the size of the drop down text box?

Not quite. URLs need to be full URLs with the "http://" on the front or they need to be 100% relative URLs. This is neither. Make it this:


<li><a href="#link" title="cool stuff">Friends</a></li>
<li><a href="#link" title="More Cool Stuff">More Cool Stuff</a></li>
<li><a href="http://www.myfriendssite.com" title="My Friend's cool site"</a></li>

Picturesofthelowcountry
Feb-09-2009, 08:48 AM
Importing a mini banner of my friends home page Is that possible , i guess that is my question?
Hi Mike. Sorry, I'm not sure I understand.
You can put a link in your Links drop down menu.

In your html header, where you have

<li><a href="#link" title="cool stuff">Friends</a></li>
<li><a href="#link" title="More Cool Stuff">More Cool Stuff</a></li>
<li><a href="www.myfriendssite.com" title="My Friend's cool site"</a></li>

Add the line in red.

Or do you mean substituting the text with a mini banner / icon the size of the drop down text box?