Truth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS Helpyou’re welcome 🙂
Forum: Fixing WordPress
In reply to: Aligning Images.Add
img
{
margin-right: 10px;
}
right after your
/*
Theme Name: Slinky Cat
Theme URI: by Catherine Collingwood || http://cathcoll.net
Description: Your theme
Version: 1
Author: You
Author URI: http://myblog.com/
*/it works in firefox, are you using IE, I never test it in IE though, so I’m not sure if it works in IE.
Forum: Fixing WordPress
In reply to: wp_list_pages(‘title_li=’);This function is working fine on my wordpress 2.0. The links showed up as intended though. Is that function on a page? Do you have a plugin that able running of PHP in pages?
Forum: Fixing WordPress
In reply to: Aligning Images.able.. 🙂
Add this to your CSS
img
{
margin-right: 10px;
}ALL images will have a margin of 10px away from your text on the right.
It you want only images in your blog entries, use this
.entry img
{
margin-right: 10px;
}Tested in firefox working, not sure in IE
Forum: Fixing WordPress
In reply to: Aligning Images.yupz, that works too, but that would be for all images already, but if you want to have it for all images, that one works fine, but if you want it for some images and not all, the class is needed I guess =)
Forum: Fixing WordPress
In reply to: Aligning Images.erm.. don’t get what you’re trying to say.
There are 2 ways to do it, add a class=”imagefloat” to each img tags or wrapping your content in a div tag and make all images in the div tags float.
What about alt tags? u mean the alt=”texthere” in the img tags?
Forum: Fixing WordPress
In reply to: Aligning Images.I won’t 🙂
.imagefloat
{
float: left;
padding: 3px;
}to your CSS
change the padding px according to what you want.It will ONLY apply to images with the class=”imagefloat”
so if you want the image in your post to “float” apply the class to it. In another case where you don’t want to apply the class to all images, when you’ve lots of images.
Wrap your blog post with <div class=”imagefloat”> and change the CSS class to .imagefloat img
🙂 hope this helps
Forum: Fixing WordPress
In reply to: Aligning Images.use a class
eg.
.image
{
float: left;
padding: 3px;
}to your CSS
<img src=”image.jpg” class=”imagefloat” />
to your html
should work, working on mine =)
By the way, this topic was touched on in the Codex
http://codex.wordpress.org/Wrapping_Text_Around_Images
for more information 🙂
Forum: Themes and Templates
In reply to: CSS HelpTry adding
margin-top: -10px;to
.date {
margin-bottom: 10px;padding-top: 0px;
border-top: 1px solid #b0b0b0;
}
so that it becomes
.date {
margin-top: -10px;
margin-bottom: 10px;
padding-top: 0px;
border-top: 1px solid #b0b0b0;
}
Forum: Fixing WordPress
In reply to: Alt codes not showingoptions > Reading from your admin panel
Forum: Plugins
In reply to: Comments Quicktag PluginErm, as in? I don’t get it. So what do I have to do to get it working? Thanks..
I’m referring to comments quicktag, not the admin quicktags 🙂
Forum: Plugins
In reply to: Comments Quicktag PluginErm, I couldn’t find what code to enter there? The read me mention that it will be automatic working. Any idea what code to get it working? Thanks 🙂
Forum: Plugins
In reply to: autoescapingYes, it does. At least for mine. I’m using WordPress 2.0 too. working beautifully. I’m not sure why it’s not working for yours though. But so far, I think this one is the best plugin I have tried for this purpose. The rest didn’t work very well for me.
Forum: Plugins
In reply to: Comments Quicktag PluginIt don’t work with all de-activated?
Checked, no white space..
That’s why I find it weird.. I thought my comments template was missing with something =x
Help anyone?
Forum: Plugins
In reply to: Comments Quicktag PluginTRied that but couldn’t found the error either
I uploaded a copy of my comments template
http://liberta.espoireve.com/comments.txt
Did I miss out something that needs to get it working?
Thanks