mattiz
Forum Replies Created
-
Same here. When you change the permalink structure to default the errors don’t occur anymore. Unfortunately thats not a great solution for me…
Forum: Plugins
In reply to: [Onswipe] [Plugin: Onswipe] OnSwipe not so greatLooks like i got it working now. I cleared the Safari cache and deleted cookies. Works fine now!
Forum: Plugins
In reply to: [Onswipe] [Plugin: Onswipe] OnSwipe not so greatAgreed also. I have some experience with WP stuff but cant’s get this one to function properly. Using WP 3.1.1, no other plugins installed, i have some pages, posts with different categories.
Nothing swipes on my iPad2. The menu button in the right top corner doesn’t do anything. Or did i made a mistake and installed the noswipe plugin? Hmmm…
Anyone got some suggestions?
Forum: Fixing WordPress
In reply to: Putting a Separator Between the Navigation Links?Chaseman, nice one. Thanks a lot. I changed it a little bit to
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'link_after' => '<div class="delimiter">|</div>' ) ); ?>Then to align it right, remove the last pipeline and to remove it from the subnav items i added css:
.delimiter {float: right;color: #ccc;padding-left: 10px;} .sub-menu .delimiter {display: none;} #menu-item-102 .delimiter {display: none;}I don’t know if this is the best or easiest way but it worked for me…