mandawahoo
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: ThickBox] Thickbox sits too low in Internet ExplorerFound a fix for this from running a few searches.
To summarize, find this snippit of code in the thickbox/thickbox.css file:
#TB_window {
position: fixed;
<span>background: #<span>ffffff</span>;</span>
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
top:50%;
left:50%;
}and replace it with:
#TB_window { /* IE7 Hack*/
position: fixed;
background: #ffffff;
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
bottom:10%;
left:50%;
}Fixed the problem for me! Hope this helps someone.
Forum: Themes and Templates
In reply to: Conditional tag if $customfield existsAmazing, thank you! I’m learning as I go but it’s really fun. I appreciate the help.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] How can I display thumbs and big image in a divI have been trying to get this to work for hours, but whenever I click a thumbnail, it just pops up in a new window. Any idea what I am doing wrong?
https://leointeriordesign.com/leo/showcase/showcase2/bow-mar/
Forum: Fixing WordPress
In reply to: How to display the child category of a specific parent category…Excellent! This is exactly what I was looking for. Thank you for sharing!
Forum: Themes and Templates
In reply to: orderby=title not working.Oh, I forgot to also thank you for the tip on keeping the pagination working on the category page. Thanks! ??
Forum: Themes and Templates
In reply to: orderby=title not working.Finally got it working. The issue had to do with a few misplaced and missing query tags.
Otto, do you still see pieces that are broken? If so, can you point them out to me? I needed separate queries on the index.php and the category template. Things are working now, but if you see that something is still broken, please point it out to me so I can fix it.
Thanks to everyone for their help!
Forum: Themes and Templates
In reply to: orderby=title not working.I already tried that already. When I take out the ‘cat=’ it has the same result.
Forum: Themes and Templates
In reply to: orderby=title not working.I made the mistake of putting the query inside the loop. However, I placed it outside of the loop and although it ordered the posts differently, they are still not in alphabetical order… any idea why this is happening?
<?php query_posts(‘cat=&orderby=title&order=ASC’); ?>
<?php if ( have_posts() ) : while (have_posts()) : the_post(); ?><!–post title as a link–>
<div style=”width: 660px; float: left; margin: 10px 0px 0px 0px; display: block;”><hr />
<div id=”postthumb”><?php $postimageurl = get_post_meta($post->ID, ‘thumb’, true); if ($postimageurl) { ?>
<div class=”postimage”><img src=”<?php echo $postimageurl; ?>” alt=”” width=”133″ height=”100″ />
<?php wp_gdsr_render_article(); ?>
#respond” style=”font-size:.9em;”>Submit a Review
#comments”>Read Reviews</div>
<?php } ?></div><div style=”float:left; display:block; width:475px;”>
- <h4 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h4>
<!–Post Meta–>
<div class=”post-meta-more”>
#comments”>Reviews (<?php comments_number(‘0’, ‘1’, ‘%’); ?>) | #trackbacks”>Trackbacks<!–optional excerpt or automatic excerpt of the post–>
<?php wp_reset_query(); ?>Forum: Themes and Templates
In reply to: Category template not listing posts by nameAnyone have an idea why?
Forum: Themes and Templates
In reply to: Category template not listing posts by nameHmm, still having the same issue when I change it to title:
https://gibsondesignmanagement.com/reviewcenter/category/all/
Forum: Fixing WordPress
In reply to: Sidebar problemsCan you post a link?
Forum: Plugins
In reply to: Adding Customizable Header breaks website. Now function file breaks it tooanyone??
Forum: Plugins
In reply to: ?? Make A Search Bar With Category Drop Down ???Does anyone have a solution for this? I also need a searchbar with a category drop down.
Thank you!
Forum: Plugins
In reply to: Need Category Drop-down for Search BarBump… anyone?
Forum: Themes and Templates
In reply to: Background stopping short – why?Okay, I fixed it with display: inline-block, and then used various fixes for earlier browser versions.