jrav001
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Input fields won’t align leftThe centering is in your style.css on line 439:
#commentform p { margin:5px 0; text-align:center; }
Forum: Themes and Templates
In reply to: Separate “Read more” from “php the_content”In your new div, but within the same loop, put:
<a href="<?php the_permalink(); ?>Read More</a>
Forum: Themes and Templates
In reply to: Help, Can’t display images an front pageI downloaded the theme so I could have a look and it’s using an old version of timthumb. If you download the latest version from:
https://timthumb.googlecode.com/svn/trunk/timthumb.php
and copy it to your theme directory, I bet it will work perfectly.
…but in case, I’m wrong, rename your existing timthumb.php before uploading the new one.Forum: Themes and Templates
In reply to: Help, Can’t display images an front pageYup – that sounds like your problem. Can you post the part of the template file that includes the image? It should be just a line or two and will contain the text “img src=”
Forum: Themes and Templates
In reply to: Help, Can’t display images an front pageTry changing this:
wp-content/uploads/2009/11/ludacris5.jpgto:
blog/wp-content/uploads/2009/11/ludacris5.jpgand let me know what happens.
Forum: Themes and Templates
In reply to: Help, Can’t display images an front pageAh – I see – the src for the image isn’t being passed to timthumb.
On page 1 of the forum link you posted above, did you add a custom field called “screen” as described in the section “HOW TO SETUP THE IMAGES ON THE SLIDER AND POSTS?” and include the link to the image as the “value”?
Forum: Fixing WordPress
In reply to: Problems viewing in IE 8Most of the problems can probably be fixed by cleaning up the errors listed here:
https://validator.w3.org/check?uri=http%3A%2F%2Fhousewifehacks.com%2F&charset=(detect+automatically)&doctype=Inline&group=0Forum: Themes and Templates
In reply to: Help, Can’t display images an front pageAll the images on your site are being controlled by timthumb.php
If you remove that widget, do the images display? If so, then it is a problem with the setup of timthumb.
Forum: Themes and Templates
In reply to: Header bachground image doesn’t show upIt’s tough to say without seeing your example, but my guess is that the background isn’t in the correct directory, or it is named differently in your css file.
Nice looking site!
It’s the link title that is being displayed, not the alt tag.
On your homepage:
<a title=”PVS-14 Review” href=”https://www.gunreviews….The code that makes the title:
<a title="<?php the_title(); ?>"
(edited to add backticks per songdogtech’s suggestion. ?? Thanks songdogtech.)
Forum: Themes and Templates
In reply to: On post page the sidebar content is below the postingIt’s hard to say without seeing your example, but for the sidebar problem, you may be missing a </div> somewhere.
Forum: Themes and Templates
In reply to: Wonky Sidebar (need help)Not sure what you want it to look like, but you are missing the opening
- tag under <h2>About</h2>
To push the headings away from the border, you could add:
margin:0 0 0 10px;Forum: Themes and Templates
In reply to: I need help with “un-hiding” my post text with Minimalist 1In your template, you have:
<div class=”content” style=”border-top: medium none; border-bottom: medium none; overflow: hidden; padding-top: 0px; padding-bottom: 0px; visibility: hidden; opacity: 1; height: 350px;”>Change: visibility: hidden;
to: visibility: visible;To make the background black, in the file: white.css
change: background-color:#FFFFFF;
to: background-color:#000000;Also, in the same file:
#maincol p {
color:#333333;
}
You’ll want to change the #333333 to something lighter so you can see it better…maybe #999999Perhaps, since there is a file called “white.css” there is also one called “black.css” that you could use?
Forum: Themes and Templates
In reply to: Post title doesn’t appear, need help…<a>" title="<?php the_title(); ?>"><?php the_title('<h2>', '</h2>'); ?></a>
That’s from memory….hope it works.
Forum: Themes and Templates
In reply to: Moving Nav Bar DownCan you post a link to your site? Otherwise, your limiting your potential answers only to those who use this specific theme.