westbym
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: TEMPLATEPATH images direcotry?Try this:
<?php bloginfo('template_directory'); ?>example:
<img src="<?php bloginfo('template_directory'); ?>/images/title-icon.png" alt=""/>Forum: Fixing WordPress
In reply to: Every thing fine but category display problem after upgradeIn addition to exclude children, there also needs to an option to exclude posts in categories, and exclude links in categories.
Forum: Fixing WordPress
In reply to: Space around Images & Renaming ImagesIn css its called the margin. You can try adding this, or editing your current css file. That is a huge pain to google. Pulled this off my css.
img.left {
float:left;
margin: 0px 10px 10px 0px;
}There is also an entry for img.right. Just replace left with right for that one. Hope this helps.
Forum: Fixing WordPress
In reply to: Space around Images & Renaming ImagesOne quick way is to set the hspace and vspace attributes. Take a look at : http://www.htmlcodetutorial.com/images/_IMG_HSPACE.html . Then edit the html of your post.
Forum: Fixing WordPress
In reply to: current category ID into a variableI’m no php expert but:
You can access the current category from the global variable $cat . I’ve used it before but for example
<?php $my_variable = $cat; ?>I cant seem to get to it right now but http://codex.wordpress.org will have information on it if you just search for $cat .Forum: Fixing WordPress
In reply to: Blix Theme Sidebar Coding ProblemCan you open sidebar.php in the blix theme directory. Search for “Comments”, then copy out the code below it until the next <?php } ?> , and post it please.