dg77
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: File UploadAh.
Gotcha.
Thanks!
I’m pretty sure it’s a stylesheet issue.
I can see it for a moment, but then it’s covered up by white space.
Possibly handling the background color/transparency of tables in a way that Firefox doesn’t like?
http://jigsaw.w3.org/css-validator/
You might try that site and see what it comes up with.
Forum: Fixing WordPress
In reply to: Posting a future date.That’s what I thought. I told my users to do that, and they said it didn’t work.
I tried it myself just now, and it works.
That’ll show me.
Thanks!
Forum: Themes and Templates
In reply to: Editing the default <p> tags in a post.Fantastic. That’s exactly what I was looking for.
Thanks!
Forum: Themes and Templates
In reply to: Editing the default <p> tags in a post.I’ve added wordpress to the current design of our webite. It has it’s own stylesheet, and the powers that be aren’t going to modify it.
p {margin:0px;}
That is in our current style sheet. It’s causing me a problem, because it removes the space inbetween paragraphs.
I can change that with the blog’s stylesheet, but it messes up our navigation menu when I do. So, I’d like to just give the tags in the blog their own class to differentiate the two in the stylesheet.
If there’s a better way, I’m definitly open to it.
Forum: Fixing WordPress
In reply to: Sending Referrers/wp_optionsDuh. Forgot to ‘use dbname’.
So, if anyone makes the mistake I did:
mysql> use enter_your_db_name;
mysql> update wp_options set option_value=’NEW_VALUE’ where option_name=’siteurl’;
mysql> update wp_options set option_value=’NEW_VALUE’ where option_name=’home’;
Thanks a lot for the help, pizdin_dim!
Forum: Fixing WordPress
In reply to: Sending Referrers/wp_optionsWhen I enter exactly what you’ve written, I receive the following error:
ERROR 1046 (3D000): No database selected
Shouldn’t there be something that tells it I need to do this in the wordpress database?
Forum: Fixing WordPress
In reply to: Sending Referrers/wp_optionsI wish I had phpMyAdmin. I wouldn’t have had to ask for help 🙂
Sadly, the people that host our site don’t have it installed. And, apparently, they aren’t going to. It’s not a big deal, as this is the only thing we use MySQL for.
Does anyone know the correct syntax to do this at mysql>?