midori
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can my blog be colorful?yup, you couls have a random number between 1 and say… 8 ? And the div name around your posts like
<div class="color<?php echo rand(1, 8); ?>">and in your CSS:
color1 { background-color: red; color: black }
color2 { background-color: black; color: white }
and so on.Forum: Fixing WordPress
In reply to: <Blockqute> Problem!Gives a forbidden to me, your image… never mind.
Look for blockquote in tbe CSS: there, you did set a margin-right or a padding-right that should not be….Forum: Fixing WordPress
In reply to: How can I let users edit each other’s posts?Seems you have to twist either the query that allows you to edit, or do something like:
Any of these users get a level 3 (out of the blue) for editing, while he keeps his level 2 (from the DB) when posting.
It would require a bit of code tweaking….Forum: Fixing WordPress
In reply to: Archive doesn’t work for meDid you even read the doc ???
< ?php get_archives() ? >
http://wordpress.org/docs/template/#archivesForum: Fixing WordPress
In reply to: Completely borked siteMmmh, to me, looks more like it lost its css…
Forum: Plugins
In reply to: Password protected categoriesI wonder if with mod_rewrite and url rewriting, Apache would consider different categories to be in different folders, and thus allow a password protection for each ?
Forum: Fixing WordPress
In reply to: Can’t Login(OT, I know, but… Do you really want to be deleted from the web, podz ? 😉 )
Forum: Fixing WordPress
In reply to: Can’t LoginDid you try removing all and any cookies of the site ?
You can also try by coding a password in a MD5 tool, copy-pasting it via any DB administration tool (PhpMyAdmin, …) on the line with your login in the _user_ table ?Forum: Fixing WordPress
In reply to: Problem: editing commentsSame problem here, I just *correct it* by adding backslash before any ‘
But yeah, it’s anoying. And upgrad.php 5 times did not change anything….Forum: Fixing WordPress
In reply to: the special characters just suddenly disappear!Did you turn on a plugin like textile or so ? If yes, try without….
Forum: Fixing WordPress
In reply to: Merge Multiple BlogsUse the import tools you have with the blog originaly ?
Forum: Themes and Templates
In reply to: CSS code for dotted line under hyperlinks?should work, but:
a { border-bottom: 1px black dotted; }Forum: Fixing WordPress
In reply to: Limiting text length on menu bar?If it’s the plugin, you can modify. I set the length to 3 words….
Forum: Installing WordPress
In reply to: Step 3 error: Cannot use object of type stdClassYeah and no. PHP 4 considers it as a two level array, so you have to give the first indice ([0]) to use it. Although, it refuses to use array functions on the second level, that’s (I think) reserved to PHP5.
Forum: Plugins
In reply to: A didfferent kind of weather pluginWould need to add a table: id (int), post_id (int), weather (int), and a table with wt_id (int), wt_code (text) and perhaps wt_image (text). But why not. Could be funny.