dillydally2095
Forum Replies Created
-
I wish it was that simple, that doesn’t work for me, I was under the impression the shuffle mode only works when you have the slideshow flash based. I am looking for something that isn’t flash based. Thanks
Hey Frank, how is it possible to randomise the slideshow? I have been banging my head for a few days with this!
Any ideas on this? I also need to figure out how to do this, or find an alternative plugin that does this?
Thanks
Bump, any takers?
Forum: Fixing WordPress
In reply to: Highlighting current pageCheers Tim, got there in the end! Much appreciated!!
Forum: Fixing WordPress
In reply to: Highlighting current pageHi TIm, almost there, its adding the current id to the links and styling…But to all of them!! This is the code I have at the moment…
<?php global $tdID; ?> <?php query_posts('cat=11&showposts=20'); ?> <ul id="postlist"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php $tdID = get_the_ID(); ?> <li> <a <?php echo ($tdID==get_the_ID()?'class="current"':'');?> href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(''); ?></a></li> <?php endwhile; ?> </ul> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Highlighting current pageThanks for getting back to me…I cant seem to get it working!! Do I need to literally replace the code I pasted on this forum with this?
<?php global $tdID; ?> <?php query_posts(); ?> <ul id="postlist"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li> <a <?php echo ($tdID==get_the_ID()?'class="current"':'');?> href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(''); ?></a></li> <?php endwhile; ?> </ul> <?php endif; ?>
where does this feature? so i can point to the categories?
<?php query_posts('cat=11&showposts=20'); ?>
Thanks
Forum: Fixing WordPress
In reply to: Highlighting current pageNo, the pages get added to the list by calling a list of posts from a specific category:
<?php query_posts('cat=11&showposts=20'); ?> <ul> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(''); ?></a></li> <?php endwhile; ?> </ul> <?php endif; ?>
this seems to work in displaying the different posts, however once new posts are added and then added to the list I want the colour of the current post to be a different colour.
Thanks
A
I am using scroll gallery btw
I have figured out how to do this, however it results in a tinted block the whole width of the thumb content area, instead I need it to tint each image, so if i only have two images it just tints them rather than tinting them and then continuing to my set width, however i notice when nextgen generates the thumbs it just generates them in the container div and not individual divs
Forum: Hacks
In reply to: Updating the loop from CMSBut would this not mean I still have to add the fields to the loops everytime a new field is added? To go into more detail I am trying to have a different page for a different nextgen gallery, in an ideal world I would like to add a gallery and it automatically sits on a new page.
Bump, any help would be greatly appreciated!
Forum: Themes and Templates
In reply to: Converting a hmtl site to have static pages that can be editedBrilliant, thanks i’ll look into this and see if it works! Thanks for your help
Forum: Themes and Templates
In reply to: Converting a hmtl site to have static pages that can be editedThe way the site has been designed is for example within the breakfast page there is 3 sections (divs):
Breakfast.html
-intro
-sandwiches
-hot drinks
-everything elseForum: Themes and Templates
In reply to: Converting a hmtl site to have static pages that can be editedNo, they are just food menus, where prices will need to be updated occasionaly, so your way sounds good! One issue though is that I have different divs containing different sections of the menu, ie div1 contains starters, div2 contains mains, what would be the best way to go about splitting this up, categories?
Thank you for the speedy reply!!