Advertisement
Guest User

Cat Rescue Sidebar

a guest
Feb 19th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.34 KB | None | 0 0
  1. function catrescue_sidebar () {
  2.     return  '
  3.     <div class="possumrightcolumn">
  4.         <a href="./?status=adopt">
  5.             <div class="possumbutton" style="background-color:#E0AAFF; ">
  6.             <h2 style="color:#330066;">See Our Cats</h2>
  7.                 <div class="possumbuttonicon">
  8.                 <img src="./wp-content/themes/catrescue/images/wee_cat_1.png" width="40" height="40" />
  9.                 </div>
  10.             </div>
  11.         </a>
  12.         <a href="./help-us/">
  13.             <div class="possumbutton" style="background-color:#7030A0; ">
  14.             <h2>Donate</h2>
  15.                 <div class="possumbuttonicon">
  16.                 <img src="./wp-content/themes/catrescue/images/wee_cat_2.png" width="40" height="40" />
  17.                 </div>
  18.             </div>
  19.         </a>
  20.         <a href="./who-are-we/our-shelter/">
  21.             <div class="possumbutton" style="background-color:#1A0070; ">
  22.             <h2>Contact Us</h2>
  23.                 <div class="possumbuttonicon">
  24.                 <img src="./wp-content/themes/catrescue/images/wee_cat_3.png" width="40" height="40" />
  25.                 </div>
  26.             </div>
  27.         </a>
  28.         <a href="./help-us/become-a-fosterer/">
  29.             <div class="possumbutton" style="background-color:#3811AD; ">
  30.             <h2>Help Us Foster</h2>
  31.                 <div class="possumbuttonicon">
  32.                 <img src="./wp-content/themes/catrescue/images/wee_cat_4.png" width="40" height="40" />
  33.                 </div>
  34.             </div>
  35.         </a>
  36.         <img src="./wp-content/themes/catrescue/images/cute-puss.png" />
  37.     </div> 
  38.     ';
  39. }
  40. add_shortcode('catrescue', 'catrescue_sidebar');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement