aale
Forum Replies Created
-
Forum: Plugins
In reply to: wordtube 2 beta questionsWhat about the functions of version 1.61 ? Are they included, even though this version was not released?
I’m asking because I’m interested in the following option:-An option has been added to display related media in the end screen of each media
thx
Forum: Plugins
In reply to: Jerome’s keywords wp2.1 no cloudwell, i fixed it by using a different plugin:
https://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/
Forum: Themes and Templates
In reply to: dynamic menu highlighting including imagesany ideas?
Forum: Themes and Templates
In reply to: dynamic menu highlighting including imageswell, you’re right. but i’m working on it via localhost, there is no internet-version yet. but i will paste the relevant code here; header.php:
<div id="supernav">
<ul id="pages">
<?php
$pg_li="page_item";
if (is_home()) {$pg_li .=" current_page_item";}
?>
<li class="<?php echo $pg_li; ?>"><a href="<?php bloginfo('siteurl'); ?>" title="Blog">Blog</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
</div>
style.css:
#supernav .current_page_item a{
color: #c40;
}hope that helps a bit.
Forum: Themes and Templates
In reply to: dynamic menu highlighting including imagesbump
Forum: Themes and Templates
In reply to: dynamic menu highlighting – again!the pages display, that’s alright. but when i add wp_list_pages code to my header.php in which my supernav-menu is located, i get a second menu excluding the “home”-page. can i somehow mix the wp_list_pages ttag with my supernav in the way that my “supernav” is affected (including the “home”-page) and no extra-menu created? the codex doesn’t offer help for me :/
Forum: Themes and Templates
In reply to: dynamic menu highlighting – again!well, i tried to built it into the style.css just pasting the following code (from:https://www.gudstoff.com/dynamic_menu.htm):
.page_item {
background-color:#ccc;
color:#000;
}
.current_page_item {
background-color:#000;
color:#fff;
}Nothing happened. that’s all. need i do more?