sonnyg80
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Whitespace in HeaderAttempted to view on Firefox with Firebug but did not uncover anything from what I see.
Any other help on this issue?
Forum: Themes and Templates
In reply to: Whitespace in HeaderIt’s a custom theme that a friend built for me. Even with the upgrade to 3.8.1, this issue wasn’t persistent at that time, which is why I found it odd.
Forum: Fixing WordPress
In reply to: Featured post showing twiceI’m still having a difficult time understanding which code to implement.
I’ve implemented this bit of code
<?php query_posts($query_string."&order=DESC&cat=-18"); while(have_posts()) : the_post(); ?>
into where the current query is located below:<div class="content"> <?php query_posts('cat=-18&orderby=ID'); ?> <?php query_posts($query_string."&order=DESC"); while(have_posts()) : the_post(); ?> <div class="post"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><span><?php the_time('dMy'); ?></span></h1> <?php the_content(); ?> <div class="meta"> <span class="left"><?php comments_popup_link('no comments', '1 comment', '% comments'); ?></span> <span class="right">filed under <?php the_category(', '); ?></span> </div>
What it does is get rid of the featured post showing twice BUT post order is reverted back to ascending. I have to put the DESC query because my posts are shown in ascending order otherwise.
Forum: Plugins
In reply to: Twitter Tools Replies BrokenHoping to get some help as I’m still having this problem – appreciate any help!
Forum: Fixing WordPress
In reply to: Text not wrapping after 1st paragraphK got it fixed.
Had to change an IE fix of
.post p { width: px }
toauto
.Thanks so much for your help man!
Forum: Fixing WordPress
In reply to: Text not wrapping after 1st paragraphHm – nope. It remains the same and reverts FF back to showing the same way as that screenshot.
Forum: Fixing WordPress
In reply to: Text not wrapping after 1st paragraphThat addition of img didn’t do it unfortunately. Blast that IE.
Here’s a screenshot of how it looks in IE7.
Forum: Fixing WordPress
In reply to: Text not wrapping after 1st paragraphThank you!
I had to also delete
float:left;
under .post p but only thing is that the wrapping doesn’t work in IE7. Fine in FF and Safari.Forum: Fixing WordPress
In reply to: Text not wrapping after 1st paragraphI did try deleting float:left; in .post p, as I’ve read that to be an issue and it worked to wrap the text but it didn’t recognize when an image was right or center aligned.
Forum: Plugins
In reply to: Twitter Tools Replies BrokenAnyone please?
Forum: Fixing WordPress
In reply to: Featured post showing twiceSnippet of code from https://www.sonnygill.com that may help make more sense:
<div id="featured"> <div class="wrapper clear"> <?php $lastposts = get_posts('numberposts=1&category=18'); foreach($lastposts as $post) : setup_postdata($post); ?> <div class="left"><img src="<?php echo get_post_meta($post->ID, "featured", true); ?>" alt="" /></div> <div class="right"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1><span><?php the_time('dMy'); ?></span> <?php the_content(); ?> <p class="right"><a href="<?php the_permalink(); ?>">continue reading</a></p> <?php endforeach; ?> </div> </div> </div>
Forum: Fixing WordPress
In reply to: Posts in Reverse OrderNevermind – I figured it out.
Added:
query_posts($query_string."&order=DESC");
before:
(have_posts())
and worked perfectly.
Forum: Themes and Templates
In reply to: Sidebar different in IE and FFhey, i’m new here but the information is great as i’ve read up on a lot. I’m having trouble with this blog i’m putting together – https://carcorner.typepad.com/test
The logo that i have placed in the sidebar shows up alright within firefox but for some reason it looks as if the sidebar image is shifted in IE, thus making the logo not match the sidebar image as it does in firefox as the shades of the color are off. Please help if you have any thoughts.
This is the CSS for the page – https://carcorner.typepad.com/test/styles.css