Ryan Duff
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Mass emailThe mass email is something I’m working on for 1.3
Forum: Fixing WordPress
In reply to: $base redefined?More info…
Wordpress version
MySQL version
etc…Forum: Themes and Templates
In reply to: <p> tagsRight above the reply box…
” Put code in betweenbackticks
. “
Must have missed that.Forum: Fixing WordPress
In reply to: Custom category prefix (possible to have none?)is your .htaccess writeable and have the changes been written to it?
Forum: Themes and Templates
In reply to: Post Composition Font SizeI just tested it, change it to this…
#content, #excerpt {
margin-left: 1%;
width: 97%;
font-size: 20px;
}
I had to do a ctrl+r to force refresh the css, but it did it, 16px is about the normal size, for reference.Forum: Themes and Templates
In reply to: Post Composition Font SizeThe line of code he’s looking at is…
<div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $content ?></textarea></div>
the textarea already has a id of content. Isn’t that the correct id to change in the css?
#content, #excerpt {
margin-left: 1%;
width: 97%;Forum: Themes and Templates
In reply to: Css menuCheck out Matt’s Intelligent Menu…
https://photomatt.net/scripts/intellimenuForum: Installing WordPress
In reply to: how do i make comments popup?Look at the top of index.php
This line:
<?php //comments_popup_script(); // off by default ?>
make it like this:
<?php comments_popup_script(); // off by default ?>
Forum: Fixing WordPress
In reply to: 1.3alpha 5 nightlies 12-11 error on profile.phpYup. Matt already took care of it.
https://mosquito.www.ads-software.com/view.php?id=542Forum: Fixing WordPress
In reply to: 1.3alpha 5 nightlies 12-11 error on profile.phpI can confirm this. Has it been reported in the bug tracker?
Forum: Fixing WordPress
In reply to: index.php outside of WP directory?thepete:
I still haven’t gotten a chance to look and see if it can be backported to 1.2. I’m not sure if you want to try and upgrade to an alpha version in a production environment just to be able to edit your index file outside of your wp directory. Personally, I’m not sure I would just for that. Right now I’m content to drag it to my desktop via ftp, edit it in dreamweaver and throw it back on the server.Forum: Your WordPress
In reply to: Turned wordpres into my portfolio!Just another great use of wordpress!
Forum: Your WordPress
In reply to: Brand New WP Templatenice. I like it, but wouldn’t personally use it. I prefer something cleaner.
Forum: Fixing WordPress
In reply to: Odd Login / Losing Style SheetSee this, it was discussed alot the other day and has been fixed in the cvs.
https://www.duff-duff.net/archives/2004/12/03/somewhat-serious-wordpress-flaw/
..Forum: Everything else WordPress
In reply to: what screen resolution to build for?A quick way to resize your browser window is to type in
javascript:resizeTo(800,600)
in the address bar, it will resize the current window. Yes, there are plugins that let you do it with 1 click, but this was the easiest for me without having to install some plugin. The othe benifit to this is that it works in all browsers unlike a plugin. If you need to change the size, just change the 800,600 part to whatever (ex. 640,480)