Laudde
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Basic WordPress] Two different categories on one page.https://www.benjertbouwrecht.nl/artikelen/alerts-en-publicaties
It’s called (Alerts) and (News)Forum: Themes and Templates
In reply to: [Twentyten] Image with link unclickable!It works, thanks alot.
You’re my hero ??Hi Jeroen,
Nice job. And than you set columns=0?
I still want to[nggallery id=x col=2]
option. That would be awesome.Thanks for your reply mikeg9999,
I am just using
[nggallery id=x]
It would be nice to change the shortcode with a suffix like this:
[nggallery id=x col=3]
I found in the following code in
/nextgen-gallery/nggfunctions.php
// fixed width if needed $gallery->columns = intval($ngg_options['galColumns']); $gallery->imagewidth = ($gallery->columns > 0) ? 'style="width:' . floor(100/$gallery->columns) . '%;"' : '';
If somebody could help me with this, that would be nice. My knowledge of php is also not the best. But I will try it myseld.
Forum: Themes and Templates
In reply to: Adding widgetarea in theme Shell LiteHello Emil,
Thanks very much. I will hop to the forums that are made for that.
I hope you/they can help me there.Cheers, Laudde
Forum: Themes and Templates
In reply to: Menubar with spacers between linksThanks for your reply, but I guess it won’t work, because this piece of code is only for the case where you do not have set a primery menu (in wp-admin)
This is de full code for the menu in header.php
<!--menu--> <div id="menubar" style="height: 29px;"> <?php $navcheck = '' ; ?> <?php if (function_exists( 'wp_nav_menu' )) { $navcheck = wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'menu_class' => 'dropdown dropdown-horizontal reset' ,'fallback_cb' => '', 'echo' => false ) ); } ?> <?php if ($navcheck == '') { ?> <ul class="dropdown dropdown-horizontal reset"> <li class="current"><a href="<?php echo home_url(); ?>" title="Home"><?php _e( 'Home', 'Rbox' ); ?></a></li> | <?php if(get_option('rb_menu_bar') == 'true'){ wp_list_pages('title_li'); } ?> <?php if (get_option('rb_cat_bar') == 'true'){ wp_list_categories('title_li'); } ?> </ul> <?php } else echo($navcheck); ?> </div> <!--menu end-->