acheta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Drop down menu without a pluginI’ve rewritten the dropdown menu. it now is completely css-based. no javascript needed anymore.
more here
Forum: Fixing WordPress
In reply to: upgrade 2.0.3 can’t edit postswow, thanks a lot. that was it. although the page you looked at wasn’t the page I was having the problem with. ??
Forum: Fixing WordPress
In reply to: upgrade 2.0.3 can’t edit postsno, I tried that and even downloaded 2.0.3 another time and uploaded it. no change. it jumps to preview right away.
Forum: Themes and Templates
In reply to: Defalt theme – background colour outside around pagein your header file
delete
body { background: #E69821 url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgcolor.jpg”); }
and change
<?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single())) { ?>
#page { background: #E69821 url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; }
<?php } else { // No sidebar ?>to
<?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single())) { ?>
#page { background: #E69821; }
<?php } else { // No sidebar ?>this should work. just not sure about the php in there.
Forum: Plugins
In reply to: New Plugin: Livehehe, maybe you should have a look at the plugin-website. it says ‘will only work with WordPress 2.0.’ several times.
Forum: Fixing WordPress
In reply to: I Changed the “Blog URL” and I can’t fix itchange it back using php myadmin
Forum: Fixing WordPress
In reply to: How to eliminate space at top of header?have a look further down the css-file. there should be a second #page. there you can adjust the margin.
the first #page is for color and typography, the second #page defines the structure. because the second #page overrules the first #page, changes in the first #page that are defined in the second #page as well have no effect.
Forum: Fixing WordPress
In reply to: How to change admin password in WP?in the admin panel go to ‘users’ and enter the new password.
Forum: Requests and Feedback
In reply to: create dropdown lists on titlebar?maybe my plugin helps:
https://www.acheta.de/2006/04/18/dropdown-plugin/Forum: Fixing WordPress
In reply to: posts on static pageok, sorry, now it works. thanks for the help anyway.
Forum: Fixing WordPress
In reply to: posts on static pagehehe, I just wanted to write to you about it.
I still don’t get it though.I installed wordpress in let’s say mysite.com/site. in the directory ‘site’ is are all the main php-files i.e. wp-config.php, index.php etc.
then I created several pages. one of them is ‘news’.using your plugin, what do I have to put on the page ‘news’ to call the normal weblog entries? I don’t understand your ‘create a sub-directory’-section. what files should I put into that subdirectory? I’m sorry for my clumsiness. I’m very grateful for your help.
Forum: Fixing WordPress
In reply to: posts on static pageok, sorry for not making my point clearer. I want my weblog entries not to appear on the front page. My site should consist of different pages. e.g. ‘home’, ‘about’, ‘contact’, ‘news’ etc. On one of these pages, here ‘news’, I would like to have the normal weblog entries to be displayed.
Forum: Plugins
In reply to: drop down plugingreat, thanks for trying. looking forward to hearing from you.
Forum: Fixing WordPress
In reply to: calling functions/php-filesthanks a lot. the plugin-method is actually what I was looking for.