doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Removing the words “search for” from baxSdedalus,
What theme are you using?
Forum: Fixing WordPress
In reply to: Div container not stretching with content, footer floating?Nitroid,
Try removing the height:100% on .indexContainer and adding clear:both to the #footerWrapper. I’m seeing quite a few validation errors that you should look into as well.
Forum: Fixing WordPress
In reply to: Posts are being shifted far left.AINomen,
esmi’s right we will need to see the problem. Keep in mind all WordPress sites are not the same.
Forum: Fixing WordPress
In reply to: Cannot remove a sliver of white spacexedious,
You have two occurrences of the #footer style in your style.css. One on line 85 and the other on line 322.
I”m confused as to what you’re trying to accomplish though. Why are you trying to reduce the white area? At first I thought you wanted to remove it, which can be done by removing the background color you originally added.
Forum: Fixing WordPress
In reply to: “Archive for the X Category”cfibanez,
Do a search for “Archive for the” in the archive.php file and let us know if you find it.
Forum: Fixing WordPress
In reply to: Removing the words “search for” from baxSdedalus,
Check the search.php file under Appearance > Editor.
Forum: Fixing WordPress
In reply to: search results don’t display imagesseonghoon52,
Line 29: <?php if (is_search()) the_excerpt(); else the_content(__('더 보기 »', 'kubrick')); ?>Remove the is_search portion, because it’s calling on the the content’s excerpt and leaving out the video if a search is performed.
Try this in it’s place:
<?php the_content(__('더 보기 »', 'kubrick')); ?>Forum: Fixing WordPress
In reply to: search results don’t display imagesseonghoon52,
Can you show the code for both the index.php and the search.php. Please do not post the code here if it is very long but instead use pastebin and link to the pastebin code.Forum: Fixing WordPress
In reply to: Red font in firefox!wildfremd,
I went through the code and it’s showing literally as font-color=”red” I’m not just slacking on the hex code, I promise.
Forum: Fixing WordPress
In reply to: Adding a css class to list items in my navigation baratlanteavila,
I wouldn’t replace the default class since this will only cause trouble later when updating WordPress. Then you would need to change it each time an update occurred.
Forum: Fixing WordPress
In reply to: Formatted truncated news feed on static homepage?andyssummerplayhouse,
On the homepage add a new loop pulling only the post category desired then use the Limit-Posts plugin on that newly created loop to truncate it into a preview.
Forum: Fixing WordPress
In reply to: Post covers entire page.. PLEASE HELPathleteswives,
Sorry for the delay in getting back to you. I’m still not seeing the post stretching across the full width of the page. What browser are you currently using?
Forum: Fixing WordPress
In reply to: Hidden Fileds – Showing an imageHorrorUK,
It seems you may be mixing code bits together. Try this:
<?php if( get_post_meta($post->ID, 'Image', true) ) { ?> <div class="something">Your Content</div><img src="image.jpg"> <?php } ?>In this instance we are printing content/images/whatever IF the custom field has content in it. If the custom field does not have content nothing will happen. No need for the else statement here.
Forum: Fixing WordPress
In reply to: Post covers entire page.. PLEASE HELPathleteswives,
The home page has no post content at this time. Let us know when you get some content back on there.
silvergenes,
I second Inspired2Write, this is a very odd issue.