shadow
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I make Logo clickable?Take the image back out of your header as a background and set it back in its own div next to the header. Float the image div – left.
Link the image with
<a href="<?php echo get_settings('home'); ?>">Margin your header from the left next to your image and reset your h1 and description back to left:10px
Forum: Fixing WordPress
In reply to: Comment – Not Found/ErrorsI have tried several comments and they all take me to a ‘Page not found’. You haven’t activated any new plugins or changed anything?
The code in your source looks fine too.
Forum: Themes and Templates
In reply to: sidebar on comment pageAnd in your sidebar.php any conditionals?
Forum: Fixing WordPress
In reply to: Comment – Not Found/ErrorsChange of theme or code in any way?
Forum: Fixing WordPress
In reply to: Updated wordpress and LOST everything??It might be an idea to email me at shadow12 at gmail
Forum: Plugins
In reply to: Contact formI am trying to recollect why it would not work for me in the same way, when I initially used this contact form on a site. I seem to remember that I had not configured it correctly and once I did so, it worked.
The document help file reiterates this point:
In order for the contact form to function, the Form Page URL and at least one email address must be Configured.
But, if you are sure yours is all in place, the only other suggestion I have is that it could be related to making sure the contact form is used on a page and not a post, or it needs permalinks activated. I am not sure on these last two points though.
Forum: Themes and Templates
In reply to: Spacing between image and textTry something like
.entry img {margin: 5px;}in your CSS.If you only want horizontal spacing next to your image just make it it left /right specific.
Forum: Fixing WordPress
In reply to: Updated wordpress and LOST everything??From what I can see now, you have an install, but parts are missing. The site is not loading properly because it gets to a call in the sidebar which is not completed. This is most likely because of a plugin you originally had in place and is either now deleted or deactivated. You need to put it back in place.
Alternatively, remove that call in the sidebar for now and put it back in later.
Once you do that, we can proceed to the next step.
Forum: Plugins
In reply to: Contact formTwo things to check first – sorry – but just in case.
1. It is activated?
2. You have configured the plugin via the Admin – Contact Form section?
Forum: Themes and Templates
In reply to: Theme limits posts/scripts on front page!!!!Look in the theme’s index.php file for
<?php the_excerpt(); ?>and change to<?php the_content(); ?>Forum: Themes and Templates
In reply to: sidebar on comment pageIn your theme index.php file there will be a call to the sidebar. It can vary depending on the theme but should have some reference to sidebar.php
If you find this reference, take note of where it is placed, and copy it in the same way to your single.php and page.php, it will make the sidebar appear on your single post and page entries.
Forum: Fixing WordPress
In reply to: Updated wordpress and LOST everything??At first I would get a message that everything was updated O.K.
So I opened the config.php file to see what was in there. The user name needed changing. So I did that.
Everything was ok and yet you changed it. I don’t understand. Can you explain?
And did you save the original database at all?
Forum: Plugins
In reply to: My Category Order plugin is not working, why?wp_list_categories('orderby=order&optioncount=1&hierarchical=0&title_li=<h2>Categories</h2>');What do you mean exactly when you say it makes no sense?
Forum: Installing WordPress
In reply to: How to install a themeOnce you have set up your FTP client to connect to your hostand site, you can then upload your theme.
Your theme should be in a folder, so you jsut upload the whole folder to your online site. Make sure the theme is uploaded to /wp-content/themes/
Is this beginning to make some sense now?
Forum: Installing WordPress
In reply to: How to install a themeWell, to add new themes, you need to upload them to a specific directory within the WordPress structure, namely, /wp-content/themes
If you have never used an FTP client, I would recommend you find one on the Internet. A good starting point is http://filezilla-project.org/
Once you have that up and running, we can guide you through the next steps…