Results 1 to 2 of 2

Thread: Image is not clickable

  1. #1
    Join Date
    May 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image is not clickable

    I have coded an image to be clickable, but its not clickable.
    Code:
    <div class="quicknav">
    <div class="wrapper">
    <div class="livesupport">
    
    <a href="http://google.com"><img src="images/phone.png"></a>
    
    </div></div></div>
    CSS code
    Code:
    .livesupport {
    	position: absolute;
    	top:15px;
    	right:-5px;
    	padding:1px 0 0 0;}
    .quicknav {
    	width: 100%;
    	height: 0px;
    	background: #fff;
    	border-bottom: 1px solid #c8c8c8; }
    
    .quicknav a { color:#9a9a9a; }
    .quicknav a:hover {	color:#343434; }
    .wrapper {
    	position: relative;
    	width:977px;
    	margin: 0 auto; }
    Thanks in advance!!

  2. #2
    Join Date
    Mar 2010
    Posts
    28
    Thanks
    0
    Thanked 4 Times in 4 Posts

    Exclamation

    Assign height to .wrapper and display:block; to .quicknav. This could help..

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •