fundin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Font face weight not showing right in FFThanks Andrew!!
Forum: Themes and Templates
In reply to: Font face weight not showing right in FFThanks Ivo, that seems to work!!
Andrew, is that really needed still? granted this is my first time using font face but it seems to work in in different browsers now. If needed, how can I create the different types on fonts? I only have the .otf one
Forum: Fixing WordPress
In reply to: Next Previous loads index postshaha yeah, there sure is a query 🙂
AHHHHH and like magic it is fixed.. I was missing the “paged” tag
thx
Forum: Fixing WordPress
In reply to: Next Previous loads index postssorry for the massive code, just thought it’s best to see in its whole
Forum: Fixing WordPress
In reply to: Next Previous loads index postsI don’t think so really..
<?php get_header(); ?> <div id="content" class="clearfix"> <div id="left-col2"> <div id="left-top3"> <?php $featured = new WP_Query('category_name='.get_option('woo_featured_category').'&showposts=5&order=DESC'); ?> <?php while ($featured->have_posts()) : $featured->the_post(); ?> <div id="left-top2"></div> <div id="left-col3"> <div class="left-content"> <div class="relative"> <div class="clearfix"> </p> <div id="div-1a"> <span class="day"><?php the_time('j'); ?></span> <span class="month"><?php the_time('M'); ?></span> </div> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <a href="<?php the_permalink() ?>"><?php if ( has_post_thumbnail() ) the_post_thumbnail( 'thumbnail' ); else ?></a> <?php if ( get_post_meta($post->ID,'image', true) ) { ?> <!-- DISPLAYS THE IMAGE URL SPECIFIED IN THE CUSTOM FIELD --> <a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>"><img src="<?php echo bloginfo('template_url'); ?>/thumb.php?src=<?php echo get_post_meta($post->ID, "image", $single = true); ?>&h=<?php if ( get_option('woo_image_height') <> "" ) { echo get_option('woo_image_height'); } else { ?>135<?php } ?>&w=<?php if ( get_option('woo_image_width') <> "" ) { echo get_option('woo_image_width'); } else { ?>225<?php } ?>&zc=1&q=80" alt="<?php the_title(); ?>" class="featured-preview" /></a> <?php } ?> <?php $GLOBALS['exclude'] = $post->ID; ?> <?php the_content(__('(more...)')); ?> <div class="category clearfix" > <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div> </div> <div class="divider"></div> </div><!--/relative--> </div><!--/left-content--> </div><!--/left-col3--> <div id="left-bottom"></div><br /><br /><br /> <?php endwhile; ?> <center><div class="navigation2"><p><?php posts_nav_link(' ','Back','Next'); ?></p></div></center> <div class="divider"></div> <div class="clearfix"> </div><!--inner-columns--> </div><!--left-top--> </div><!--left-col--> <div id="right-col"> <?php get_sidebar(); ?> </div> </div><!--content--> </div><!--content-back--> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: if thumbnail designthat was supposed to say
<a href="#"> </a>Forum: Fixing WordPress
In reply to: if thumbnail designThanks for the link but that doesn’t really seem to help with my problem. I’ve already called the thumbnail.. and I’ve tried the if thumbnail script.. BUT the problem is this:
I only want the and to be executed IF a thumbnail exist.. but I can’t seem to integrate it in to the if function
Forum: Fixing WordPress
In reply to: Remove line breaks and fix widget designThanks but I’ve figured it out now. I created a separate function called before_widget2 and called it in the shows plugin, then I just created a separate css for widget2
perfect 😀
thanks for all the help anyways
Forum: Fixing WordPress
In reply to: Remove line breaks and fix widget designI’m not really sure what you mean, I’ve added the “second class” but how do I call it on only ONE widget.. that’s the big problem, to create a separate class for this one widget that doesn’t affect the others
Forum: Fixing WordPress
In reply to: ascending future postsGreat thanks, that worked perfectly 🙂
Oh yeah, the future post things wasn’t really relevant, that’s a separate plugin and really doesn’t have anything to do with the order.. 😀
Forum: Fixing WordPress
In reply to: Remove line breaks and fix widget designhttp://wordpress.pastebin.com/m57fd6a6f
here’s the code for sidebar.php and from what i can tell the widget is not in there.. I’m guessing it’s called through wordpress widget handlers thingie but I still can figure out where to code for it is processed.thx
Forum: Fixing WordPress
In reply to: Remove line breaks and fix widget designThanks, the echo strip worked great, exactly what I wanted
the second is a whole other story 🙂 I know css and know how to change it but I only want to change the design for this ONE widget. I am new to wordpress but the sidebar css seems to change all the widgets and I can’t seem to find the right template that holds the css tags for each individual widget.. if there is such a thing
Forum: Fixing WordPress
In reply to: Remove line breaks and fix widget design<?php if ( $instance[‘date’] ) : ?>
<h5 class=”uppercase light”><?php the_time(‘F j, Y’); ?> <?php the_excerpt(); ?> </h5>
<?php endif; ?>
” rel=”bookmark” title=”Permanent link to <?php the_title_attribute(); ?>”><?php the_title(); ?>some of the widget code might help 🙂