kickass
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Loose the “Blog Archive” in title?Kafkaesqui, you’re supposed to be the mod, and spank people who do that . . . unless it’s you looking for the spanking . . .
Forum: Plugins
In reply to: Dagon Design Form Mailer Plugin – Version 4!Captcha still not working in the new version. Empty image. It’s accessing the verify file, since I changed the color of the image bg and that’s showing fine. No other plugins are interfering.
Also, instead of plopping all that css into the header, why not make it a separate stylesheet and call it from the script? Make life a lot easier on front enders. I’m going to try to set this up that way if I ever get the working– or ripped out entirely.
Forum: Your WordPress
In reply to: My Blog does not look well in FirefoxMost of what you need is either in the wordpress docs or linked from the wordpress docs. This isn’t the place to teach css, you might try a css forum or discussion group, or some online tutorials for that.
Forum: Your WordPress
In reply to: My Blog does not look well in FirefoxWhat you have to do is open style.css in your theme and style ajax_comments_div so it works. You probably have no styles defined for it.
Forum: Fixing WordPress
In reply to: Help! Multiple URLs causing Google indexing issues…My suggestion is do a sitemap with very good filters so urls are only shown once.
I use a sitemap service. The link is at the bottom of all my blogpages if you need it.
Forum: Themes and Templates
In reply to: How can i make the sidebar “inline”Maybe you should read these first:
http://www.urbangiraffe.com/2005/04/12/themeguide1/
http://codex.wordpress.org/Blog_Design_and_Layout#Basics_of_WordPress_Site_Design
http://css.maxdesign.com.au/listamatic/
We all put the time in to learn this stuff, now it’s your turn. 🙂
Forum: Themes and Templates
In reply to: How can i make the sidebar “inline”You might find what you need here:
http://css.maxdesign.com.au/listamatic/Do keep in mind that if you use the template tag for linklists in your sidebar this gives you no choice but to generate nested lists unless you hack core (stupid, huh? that’s gotta be a holdover from wp 1.2, I swear.) so it might be wise not to have link lists if you use this treatment, since nested horizontal lists are gonna be a bear and probably won’t work well for you.
Forum: Requests and Feedback
In reply to: blogger import image alignmentI’m going to make a suggestion here- first, using align=”right” is old and deprecated code. Secondly, using inline styles is a bad, bad idea. The way to deal with this is in your stylesheet. You can try this in your stylesheet down at the bottom:
p img {
float: right;
}It’s possible you might need to get more specific with something like this:
.post-top p img
or
.post-bottom p img
Now, in the html simply make sure your image tag is INSIDE the p tag and make sure you assign a width to your image inside the image tag.
Forum: Plugins
In reply to: Text Control Config plugin….You might get a better response from the person who made the plugin.
I’d also search “javascript in posts” since there have been many issues with javascript when using the rich text editor.
Forum: Plugins
In reply to: Is it safe to upgrade TinyMCE?I’ve used tinymce on other applications and on wordpress, and I’d say based on comparison it’s been heavily modded. Of course, anyone could have surmised that by the fact that tinymce seems to work well on other applications, while on WP it’s a hazard and a nightmare.
What this means is probably not.
Forum: Fixing WordPress
In reply to: External blog editor cannot access blogDamn, you’re using the newest version? There were problems with earlier versions. Also, sometimes the server itself imposes filesize upload limits that can conflict.
Forum: Themes and Templates
In reply to: I am a Newbie and i cannot get my sidebar block to alignTry searching the forum for the solution. This question has been asked and answered NUMEROUS times and your solution is there, I’m sure. And now that the forum search finally works again after months of being broken . . .
Forum: Themes and Templates
In reply to: Oh, please help, I am confused!You can start here:
http://codex.wordpress.org/Using_Themes/Theme_ListMOST themes that work in 1.5 will work in 2.0, but some won’t- usually the ones that have the best source ordered layouts will cause WP to cough up a hairball . . . which I find funny since they work fine in 1.5.x.
Anyway, there is also a section in the codex about customizing, though I think this article here is a bit more helpful for beginners–
http://www.urbangiraffe.com/2005/04/12/themeguide1/If all else fails, there are some of us who will do custom themes for a fee.
Forum: Fixing WordPress
In reply to: Podcasts/RSS FeedsUmm, did any of you run a search?
http://codex.wordpress.org/Podcasting
http://codex.wordpress.org/Plugins/Audio_MoodI think some folks have used audioblog with wordpress for this too. Just use audioblog as a search term for info.
Forum: Fixing WordPress
In reply to: Connecting WordPress to SMF user tablesFYI for the person looking for a CMS that has an SMF bridge- http://modxcms.com AND it templates in xhtml/css wonderfully . . .
Maybe someone who knows code can peek at how that fabulous ModX team bridged the two and apply the same principles to a WP bridge?