Scoe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link Bullet Pointstry entering into your CSS
#linkcats ul { padding: 0; }That will probably take it a bit too far left, so maybe:
#linkcats ul { padding: 0 0 0 20px; }Forum: Fixing WordPress
In reply to: Page navigation menu with image buttons and page titles underneathcouldnt you just:
#nav ul li { background: url(images/icon.png) no-repeat; }or if that doesnt work:
#nav ul li a { background: url(images/icon.png) no-repeat; }if you dont have room for the image… then just add some padding
Forum: Fixing WordPress
In reply to: Stuck trying to insert an image into a custom homepage templatefound a sollution:
<img src=”<?php bloginfo(‘template_url’); ?>/images/picture.png” />
that one was bugging me 🙂
Forum: Fixing WordPress
In reply to: Stuck trying to insert an image into a custom homepage templateI have the same problem.
The reason for this is because the link ./images/picture.png doesnt actually exist (e.g. http://www.domain.com/images/picture.png will not find anything.), this is because the theme folders are all created through functions in the main wordpress code.
my attempt (which did not work) was to include the uri into the source of the file with php, It ended up having lots of unknown symbols :S
If anyone else has an idea on how to solve this, please let us know 🙂
Thanks
Forum: Themes and Templates
In reply to: Image “outside of” template?do you want these images to be hard coded or able to change in wordpress? if you do them hard coded then you can just enter them into the sidebar and css it into the correct place.
Forum: Fixing WordPress
In reply to: how many keywords are max. for seo?google SEO, there are lots of tools and descriptions of what makes good SEO. Personally, I go for approx 10 key words, as the more you have the more google wont like you =], however too few and you won’t get your message accross.
Forum: Fixing WordPress
In reply to: Can I get a DIV auto inserted around IMG instead of PI would also like to know. I don’t really want to ask a client to insert <div> tags everytime they want a specific image. e.g. a banner
Forum: Fixing WordPress
In reply to: Remove p tags from imagesWordPress automatically applies <p> tags to almost everything, the only way round it that I have found is to either disable <p> tags completely, which I wouldnt recomend, or to manually enter <div> tags around your images. This way you can style them seperately to a standard <p> tag
the code should look like:
<div class="banner"><img src="images/banner.jpg" alt="banner" title="banner" width="1000" height="230" class="alignnone size-full wp-image-64" /></div>Forum: Plugins
In reply to: require_once doesn’t workI had this problem. WordPress doesnt seem to like require_once commands, instead, use the include command.
include(TEMPLATEPATH.'/whatever.php');If you have white space after this, try taking out the <?php tag from the included file to see whether it gets entered as text or not. If it does, then the problem lies in the included file, not the include statement.