RKCastillo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Parse error:unexpected T_STRING HelpI tried that before I wrote this post and it didn’t change anything.
Forum: Fixing WordPress
In reply to: Meta Data Into Custom Page Template?Would you mind writing out the code? I don’t really know php.
I am using the wordpress seo plugin by Yoast for the meta title and description.
So I want to just pull in that info for this page template.
Forum: Themes and Templates
In reply to: Changing sidebar in simplewp themeSo…here’s the CSS:
#sponsors{background:#FFF;padding-bottom:8px;overflow:hidden;}
#sponsorscontent{padding-top:3px;padding-left:8px;padding-right:8px;}
#sponsorscontent img{padding-top:5px;border:0;}
.right{float:right;}
.left{float:left;}
.sidebar-item {margin-top:10px;background:#fff;}.sidebar-item ul {margin:0;padding:8px;list-style-type:none;}
.sidebar-item a{color:#464647;text-decoration:none;}
.sidebar-item a:hover{text-decoration:underline;}Here’s what’s in the sidebar.php
<div id=”sidebar”>
<div id=”sponsors”>
<div class=”title”>Sponsors</div>
<div id=”sponsorscontent”>
<div class=”left”><img src=”<?php bloginfo(‘template_url’); ?>/images/125.png” alt=”125″ /></div>
<div class=”right”><img src=”<?php bloginfo(‘template_url’); ?>/images/125.png” alt=”125″ /></div>
<div class=”left”><img src=”<?php bloginfo(‘template_url’); ?>/images/125.png” alt=”125″ /></div>
<div class=”right”><img src=”<?php bloginfo(‘template_url’); ?>/images/125.png” alt=”125″ /></div>
</div> <!– Sidebar content div –>
</div> <!– Sponsors div –>How do I put my own pictures in these codes?