making an entire div a link

This is a discussion on "making an entire div a link" within the Web Page Design section. This forum, and the thread "making an entire div a link are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 20th, 2006, 01:50
New Member
Join Date: Sep 2006
Location: denver
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
making an entire div a link

is it possible to wrap a <a href...> tag around a <div> to make the whole thing a link? Any help appreciated.
Reply With Quote

  #2 (permalink)  
Old Sep 20th, 2006, 04:27
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: making an entire div a link

No, but you can specify a height and width for a link and then place it over the box:

Code: Select all
a.box {
    position: absolute;
    width: 200px;
    height: 200px;
    text-indent: -5000px;
    display: block;
}
#info {
    width: 200px;
    height: 200px;
}
Code: Select all
<a href="#" class="box">Hidden Link Text</a>
<div id="info">
    <p>Content in a div.</p>
</div>
Something like that. It would help to know exactly what you're trying to do with it, but if you're a little bit familiar with CSS, you'll figure it out.
Reply With Quote
  #3 (permalink)  
Old Sep 20th, 2006, 12:17
New Member
Join Date: Sep 2006
Location: denver
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: making an entire div a link

that sounds like it will work - thanks for the advice! I'll let you know how it goes.
Reply With Quote
  #4 (permalink)  
Old Sep 21st, 2006, 00:15
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: making an entire div a link

No problem.
Reply With Quote
Reply

Tags
making, entire, div, link

Thread Tools

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
Making a link non-link when on the page. mcdanielnc89 Web Page Design 1 Nov 16th, 2007 08:05
Making an image a link adds whitespace I can't get rid of sgware Web Page Design 5 Aug 18th, 2006 22:38
Making a link live in a cdo email weezie Classic ASP 0 Feb 15th, 2006 14:49
filling an entire screen mreif Web Page Design 4 Jul 29th, 2005 23:30
making a graphic signature a link question NovaGoth Graphics and 3D 1 May 2nd, 2005 09:16


All times are GMT. The time now is 07:29.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43