fechto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Header Images Looks Great in Chrome But Distorted in Firefox.It’s these three commands:
.pull-left {
float: left;
}
.pull-left {
float: left !important;
}
.pull-left {
float: left !important;
}they are in three different css files. also, it might be that firefox isn’t shrinking your header – its 1755px wide!
http://www.newlywedsonabudget.com/wp-content/uploads/2014/05/headertest.png
Use firebug to troubleshoot.
Forum: Fixing WordPress
In reply to: Customizing titles on pages and postsbtw, i’m using the all in 1 seo pack for seo stuff
Forum: Fixing WordPress
In reply to: How to put only images on a post keeping a clean layout?Hey,
I’m no expert, but it looks to be a css problem. When I check your code I see this:
<img class=”alignleft size-medium wp-image-132″…
which is not how it goes. A class will have a name that refers to specific rules in your css file…and there is no such class name in the css files I checked.
Anyway…I don’t know what to say other than check rework your css.
Forum: Fixing WordPress
In reply to: Remove Time ‘n Date Stamp From Category Post ListYep, wingrep did it. It was in archive.php. had to look for the_time query string.
The offending code –
<div class=”postmetadata”>Posted
<!– the date and time –>
on <?php the_time(get_option(‘date_format’)) ?>, <?php the_time(get_option(‘time_format’)) ?>,
<!– post author –>
by <?php the_author() ?>
<!– comments –>
and received <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>. <?php edit_post_link(‘| Edit’, ”); ?>
</div>or some variation thereof. I left the edit option.
Thnaks a bunch…now where is the resolved button?
Forum: Fixing WordPress
In reply to: Remove Time ‘n Date Stamp From Category Post ListHmm….nothing changed, so I put it back.
That code was from archive.php. I’m using the wpsoul theme. I’ll try wingrep now.
Forum: Fixing WordPress
In reply to: Remove Time ‘n Date Stamp From Category Post ListVery helpful, Thanks.
I found this line in the code:
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
but I’m a little wary of taking the whole thing out. Well, I’ll give it a shot and see what happens.
Forum: Fixing WordPress
In reply to: Remove Time ‘n Date Stamp From Category Post ListMichael,
Thanks for the reply. I’ve already removed the date and time stamp fromt he index file, and the search results file…but that category list page is somehow different.
I’ll check it out with that program, and report back.