babsiee33
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu jumps up and downthanks for your reply Matthew.
It’s quite strange since now it only jumps with the ‘about us’ menu. Anyone else an idea how to prevent it?
Forum: Themes and Templates
In reply to: Theme: Mystile Color optionsAh, I just figured it out. It’s underneath the theme options and then you can select the css. Sorry! Topic can be closed/removed.
Thanks for your reply!
Forum: Themes and Templates
In reply to: [Ari] Add pictures to my category-postsYES thank you criscouto! ??
Forum: Plugins
In reply to: Link category to specific postOh i should have looked inside the forum… the solution was already there! I quote:
here is my solution: “an automatic condition script that could be attached to the main category.php and checks if there’s just one post in the category and redirects.”
<?php
if(have_posts()) :
$category = get_the_category();
if ($category[0]->category_count == 1) :
while (have_posts()) : the_post();
wp_redirect(get_permalink($post->ID));
endwhile;
else :
include(TEMPLATEPATH . ‘/index.php’);
endif;
endif;
?>Worked great!
Forum: Themes and Templates
In reply to: Theme Respo | Move logo to the rightI figured it out: If you want to change the image you can extend the length of the image so it will automatically will go to the right side of the page.
You have to put the header tag inside the column where the navigation is and then you are all set ??Forum: Themes and Templates
In reply to: Theme Respo | Move logo to the rightHi Esmi,
thanks for your reply.
It’s a free theme! So I don’t know if that makes a difference?Thank you for the suggestion, I already have sent an e-mail to the company. But I hope someone here can help me as well ??
thanks!
Forum: Fixing WordPress
In reply to: Show posts under catagoriesThank you avinash-woodun, I have installed the plugin and it works perfect!
Forum: Fixing WordPress
In reply to: Site is gone?I e-mailed the previous designers and they put a code inside of the header that made the site only visible for certain IP-adresses.
So now it’s solved.Thanks!
Forum: Fixing WordPress
In reply to: Site is gone?Thank for your suggestion.
It’s actually really strange, because when I try to see a single page it also displays the same ‘under construction’file.
Is that a problem in my permalinks?
Forum: Fixing WordPress
In reply to: Site is gone?Thank you for your fast reply, esmi.
There was an index.html in the httpsdocs folder, I deleted it. But now it still shows ‘under construction’ in plain text.