guided
Forum Replies Created
-
Forum: Themes and Templates
In reply to: IE6 Sidebar Issue (Small Fix Needed)To my even greater confusion, I don’t have the problem on my pages, which use a different div (like on the Shanghai destination guide for example).
Forum: Fixing WordPress
In reply to: Using a gravatar image within author.phpWorked for me. Thanks.
Forum: Themes and Templates
In reply to: Styling lists that include imagesFixed it. Just had to define the element’s height.
Forum: Plugins
In reply to: Displaying posts from a category within a static pageOh, I should mention that I had to place the code below outside the loop.
<?php // Declare global $more, before the loop. global $more; ?>
Forum: Plugins
In reply to: Displaying posts from a category within a static pageThanks stvwlf. I had given up on this, and was going to find a less satisfactory workaround. Your help got me to give it another go.
I’ve managed to get something resembling what I want, which, with a little styling, should be just about right.
I used a mixture of antistandard’s solution, found here, and a solution I found in the codex, here.
My code, placed after page.php’s <?php endwhile; endif; ?> looks like this:
<?php query_posts('cat=255');?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php // Display content above the more tag $more = 0; the_content("More..."); ?> <?php endwhile; else: endif; ?>
Not sure if that’s the neatest way to do it, but it seems to work.
Forum: Requests and Feedback
In reply to: [Plugin: Author avatars] Please add feedback hereApologies. This problem might have been with gravatar.com, or with my Chinese internet connection. The site is now working perfectly. Thank you for a very useful plugin!
Forum: Requests and Feedback
In reply to: [Plugin: Author avatars] Please add feedback hereOn my site, holidayfu.com, the page doesn’t stop loading since installing author avatars – it continues to read gravatar.com. Any idea why? I’m not sure if any code I can provide would help, but let me know if there is and I’ll post it.
Forum: Themes and Templates
In reply to: Wrapping two lines of text around a sidebar imageAnybody?
Forum: Fixing WordPress
In reply to: ‘Include=’ not working with modified wp_list_pagesNo, the include argument isn’t there. But the exclude argument is there, and it doesn’t work. Here’s what was diplayed:
<pre>Array ( [depth] => 0 [show_date] => [date_format] => F j, Y [child_of] => 0 [exclude] => [title_li] => [echo] => 1 [authors] => [sort_column] => menu_order, post_title [0] => include=2,190,303 ) </pre>
I’ve gone around this by using the exclude pages plugin, which is called by the funtion. It worked!
Forum: Fixing WordPress
In reply to: ‘Include=’ not working with modified wp_list_pagesWould adding something to the function help?
Forum: Fixing WordPress
In reply to: ‘Include=’ not working with modified wp_list_pagesThanks for your help Michael. I’ve tried that, and something happened. All pages are now diplayed (go to holidayfu.com to see what I mean), so the include call still isn’t working. Any ideas? I’m completely lost.
Forum: Fixing WordPress
In reply to: ‘Include=’ not working with modified wp_list_pagesIt works, as in it calls the right pages, but they appear one below the other, instead of one next to the other. They are also misaligned.
Here’s the css:
#menu{ width:380px; float:right; } #menu_items{ float:right; padding:90px 0px 0px 0px; } #menu_items div{ display:block; float:left; color:#000; padding-left: 10px; } div#menu #menu_pad{ font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; padding-right:17px; color:#fff; float:right; width:100%; } div#menu a{ color:#000; line-height:14px; } div#menu a:hover{ color:#ea1c24; } div#menu #menu_items div{ height:22px; } div#menu #menu_items div:hover{ color:#333; }
Forum: Fixing WordPress
In reply to: Links work in IE, but not in Firefox*Anybody?*
Forum: Fixing WordPress
In reply to: Links work in IE, but not in FirefoxThanks Iridiax,
I’ve tried removing the hover and focus codes. No luck! I also deleted the .js file. That didn’t work either.
The problem only affects pages outside of the loop: I’ve added links and photos to a regular post (they’re visible on the front page now), and those work well. So, again, links aren’t clickable, and photos flicker — but only in Firefox. Other than a few minor issues, the site does what it should in IE.
Forum: Fixing WordPress
In reply to: Links work in IE, but not in FirefoxIt is a problem with my theme. Anyone know where I should look?