doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changing background colors for one pagepatty25,
Post a link to your site and the page in question.
Thanks
Forum: Fixing WordPress
In reply to: How to change the number of Recent ArticlesLuis_Miranda,
I would say this is a bit of a mess and could be cleaned up for readability sake. Please show the code from post.php and we should be able to help.
Forum: Fixing WordPress
In reply to: HTML Tags not appearing on site after editing.bradtaylor,
I take it you resolved this issue?
Forum: Fixing WordPress
In reply to: HTML Tags not appearing on site after editing.bradtaylor,
Can we take a look at the site? There are many things that could be causing the problem.
Forum: Fixing WordPress
In reply to: How do I make only my latest post show on the home page?multimediocrity,
We would need to see your code and your site. Please post a link. Keep in mind the code used to create each WordPress website varies.
Forum: Fixing WordPress
In reply to: IE rendering of H Tags breaks singers heart… please helpdonnaburke,
Are you specifically talking about IE6? If so this is most likely a result of your body tag’s background image being a .png file. Try using this plugin: http://wordpress.org/extend/plugins/hits-ie6-pngfix/ to fix the issue.
Forum: Fixing WordPress
In reply to: How to change the number of Recent ArticlesLuis_Miranda,
That’s not it. This is your stylesheet. Copy index.php to the pastebin for us.
Forum: Fixing WordPress
In reply to: Browser Page Logo Helpbwbettes,
The main theme folder:
wp-content > themes > default (or current theme in use)Let me know if that clears it up. We typically drop one version in the root directory, i.e. the same location as the following folders: wp-content, wp-includes, wp-admin. Drop it in this location and as long as you have the header code installed as below, you should be fine.
<link rel=”shortcut icon” href=”http://www.yoursitename.com/favicon.ico” />
Forum: Fixing WordPress
In reply to: How to change the number of Recent ArticlesLuis_Miranda,
Show us the code displaying this portion of the site.
Forum: Fixing WordPress
In reply to: wp list categories with descriptiondavidmak,
Take a look at this tutorial, should cover everything you need.
doc4design.com/articles/wordpress-list-categories-next-to-descriptions/Forum: Fixing WordPress
In reply to: WP_Query on single or static page, if multiple loops e.g. in footerricharduk,
Your first loop on either single.php or page.php:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> DO STUFF <?php endwhile; endif; ?>The each successive loop on the page.php should be specific as to either category, or a specific post or page id:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=6&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?> DO STUFF <?php endwhile; ?>Is this what you are looking for or am I way off?
Forum: Fixing WordPress
In reply to: Clickable headerhypsnos,
Such a long string of code, I almost missed it.
Try this:
<a href="http://www.xxx.org/"> <img src="http://location.of.image.png" width="520" height="130"> </a>I removed a large portion of code for readability, the actual location of the image will need to be replaced.
Forum: Fixing WordPress
In reply to: How do I add my custom logo image to Adsimple theme?danirebar,
Where are you wanting the logo to go? I was expecting to see a graphic that you were trying to replace.
Forum: Fixing WordPress
In reply to: Creative Commons License, sick.teckn1caLity,
Just ran across this article, a little wordy but skip to the bottom portion for a walk through.
http://themebot.com/tips-and-tutorials/how-to-remove-encrypted-footer-links-in-free-wordpress-themes
Forum: Fixing WordPress
In reply to: Creative Commons License, sick.teckn1caLity,
This sounds fishy to me. Try removing them and see what happens, I agree with micahcooksey.