There’s various articles and tutorials on the web explaining how to reset your WordPress password using different methods (email, ftp, emergency scripts, mysql, phpmydamin). Unfortunately a large portion of them, particularly the ones using mysql and phpmyadmin to reset the wordpress password will not work. Or rather – they will work but there is a […]
Wordpress Tips
WordPress Quick Tips: background color, special chars
To set special attributes of a paragraph e.g. the background, font typeface, color and size, etc enclose your paragraph in a <div> tag, e.g.: <div style=”background-color:black;color:red;font-size:0.75em;font-family:Courier”> Your paragraph goes here. It will use a Courier font, 75% of the normal size, and the text will be red on a black background…</div> Using the above settings […]
WordPress <code> does not keep code indent’s – use <pre>
Yup. Silly as it may sound the <code> tags in WordPress are pretty much useless when you want to paste a code snippet and not have it look like a poem written by crazy robot… 🙂 Use the <pre> .. </pre> tags instead. Here’s an example. Code formatted with ‘<code>’: while( 1 ) { tmeasure_t0( […]