View Single Post
Old 12-18-2012, 04:07 AM   PM User | #17
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Here is anchors added to your images
Code:
<div class="wrapper p3">
                	<article class="grid_4">
                    	<div class="banner">
                        	<figure><a href="#"><img src="images/banner-1.png" alt=""></a></figure>
                        </div>
                    </article>
                    <article class="grid_4">
                    	<div class="banner">
                        	<a href="http://tizenx-rsps.com/vote/index.php"><img src="images/banner-2.png" alt=""></a>
                        </div>
                    </article>
                    <article class="grid_4">
                    	<div class="banner">
                        	 <a href="http://tizenx-rsps.spreadshirt.co.uk/"><img src="images/banner-3.png" alt=""></a>
                        </div>
                    </article>
                </div>
That is quite the mess though. You have lots of divitis going on there...

Look how simple it can be -
Code:
      <div class="wrapper p3">
          <a href="#"><img src="images/banner-1.png" alt="description" class="grid_4"></a>
          <a href="http://tizenx-rsps.com/vote/index.php"><img src="images/banner-2.png" alt="description" class="grid_4"></a>
          <a href="http://tizenx-rsps.spreadshirt.co.uk/"><img src="images/banner-3.png" alt="description" class="grid_4"></a>
      <!--end .wrapper p3--></div>
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote
Users who have thanked Excavator for this post:
legendrock7 (12-19-2012)