Phil
Forum Replies Created
-
Forum: Plugins
In reply to: Contact Form 7 ProblemCould be a number of things, like incompatible plugins or a javascript issue on same page.
Try deleting all plugins except cf7 and test it. If it works, turn on each plugin seperately until you find which one causes issue. If no difference, then check developers cf7 website for support. I’m sure there are questions in FAQ seciton.
Anyone?
@desz You could always use some css3 in your stylesheet for that:
.wpp-thumbnail { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }I’m getting some random values for height and width in the HTML output:
<img width="50" height="50" title="Some title" alt="Some alternative text" class="wpp-thumbnail wp-post-image" src="link-to-image-url">No idea where this 50px height and width are coming from – my theme uses 65px x 50px and that’s what the thumbnail size is in the widget, but even if I put 100px x 50px, it’s still outputted as 50x50px.
I notice an ’empty cache’ button in settings, but will this delete all popular data or simply just regenerate the thumbnails?
Thanks,
Phil
Forum: Fixing WordPress
In reply to: not really sure how i would explain itCheck your header.php and validate it using html validator. This will show errors. Probably something like a stray ‘>’ or something.
Forum: Fixing WordPress
In reply to: How to use featured Image?I mean where you type the text of your post, the ‘editor’ window. Make sure to remove the image from there.
Forum: Fixing WordPress
In reply to: Custom Header ImageFTP or via your server control panel (File manager)
Forum: Fixing WordPress
In reply to: Don't want to order Category alphabeticallyThe clue is in the code:
'order' => 'ASC'asc = ascending.
You can view here the possible ways to order posts.
Forum: Fixing WordPress
In reply to: help my logo is not shwing upThe logo path is incorrect. The one you have used is a link to the imageshack page for the logo – not the actual logo.
Currently it is looking for:
http://imageshack.us/photo/my-images/600/logobpt.pngIn header (or wherever you added the logo url), try using this link instead:
http://img600.imageshack.us/img600/4577/logobpt.pngHope this helps,
Phil
Forum: Fixing WordPress
In reply to: Custom Header ImageEverything is possible in this world (well, pretty much).
Open ‘Appearance’ -> ‘Editor’ and edit style.css.
You’ll see #header like this:
#header { padding: 63px 60px 62px; }Simply change it to:
#header { background: url(images/MYIMAGE.jpg) no-repeat; padding: 63px 60px 62px; }* don’t forget to rename MYIMAGE.jpg to whatever you called yours.
Upload the image you want to use INSIDE the images folder of the theme:
wp-content/themes/[themename]/images/and you’re good to go. 🙂
Forum: Fixing WordPress
In reply to: How to use featured Image?Set featured image from edit post screen, then remove the image from the post body. So where your text is, remove the image from there by clicking once on it, and hit the red circle to remove from post.
Forum: Fixing WordPress
In reply to: Line breaks / hard returns not working?Yes.
You can try installing a plugin called tinyMCE.
Once installed, there is an option under settings to ‘stop removing page breaks
‘ and this may solve your problem.Forum: Fixing WordPress
In reply to: how to implement slider in html to woedpressYou can add the scripts to your server, and any code can be placed in the php files where you want them to be. Integrating it as a custom post type is a bit more difficult for a beginner.
Forum: Fixing WordPress
In reply to: Some Youtube videos don't embedI always use the ‘old embed style’ from Youtube embed option. WP sometimes doesn’t like the normal embed code.
Forum: Fixing WordPress
In reply to: help my logo is not shwing upNeed a link to help you with this one.
Forum: Fixing WordPress
In reply to: How to use featured Image?The featured image is totally separate from the images you insert into a post.
So, you could have no images in the post, but set a featured image for a thumbnail. Likewise, you could have 10 images in a post and no set featured image, so no thumbnail for post.