Terry Sutton (saltcod)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Installation of 3.9 failed. Now site & admin page are blank.Hey! It looks like your wp-admin works: http://mypeexam.org/wp-login.php?redirect_to=http%3A%2F%2Fmypeexam.org%2Fwp-admin%2F&reauth=1
Can you not login there? Even if you reset your password via “Forgot my password?”
Forum: Fixing WordPress
In reply to: Installation of 3.9 failed. Now site & admin page are blank.Dont fret @bzerka! All your WordPress site is is a group of files/folders and the database. You can move them around all you like. You seem to have some issue somewhere, and there’s a good chance we’ll be able to figure out what’s wrong.
WordPress is extremely resilient to catastrophic issues, so I think you’ll be fine. If I were you at this stage, I’d setup a test environment to play with the site and see if you can’t isolate/recreate the issue.
On a Mac, use MAMP and on Windows use WAMP. Download your WP files and a database export and see if you can get things up and running locally, then run the update. If it fails, move your wp-content/plugins folder to wp-content/_plugins to see if a plugin is causing you grief.
There’s a lot of troubleshooting you can do yet to get things back to good.
Terry
Forum: Fixing WordPress
In reply to: Installation of 3.9 failed. Now site & admin page are blank.Humm….You probably don’t have ssh access? There’s only so much you’ll be able to do from here if you can’t access the admin. I’d contact the host and see what they recommend.
Forum: Fixing WordPress
In reply to: Installation of 3.9 failed. Now site & admin page are blank.Hey @beardonabike, how did it fail? Did you get anything? Any error? Just the whitescreen?
Have you contacted you host? It looks like Bluehost?
Forum: Fixing WordPress
In reply to: Cannot import WordPress.com blog into ww.wp.xz.cn sitehey @nativenyker. You’re definitely not being held hostage by wp.com =) But you are having trouble.
I’ll do what I can here, but you really should start a new thread with a new issue.
So you have an xml export AND a sql dump of your site? Is that right?
Forum: Fixing WordPress
In reply to: Adding margins to pagesHey there
Pretty easy to do. That image in particular has a class of .alignleft
If you go to line 618 in your style.css file, and add one more rule for margin-right. It should look like this:
.alignleft { float: left; margin-right: 25px; }That will make things end up looking nice and cosy like this: http://glui.me/?i=iaqi9nxhudtxw42/2013-12-21_at_9.08_AM_2x.png/
Good luck!
Forum: Fixing WordPress
In reply to: Editor Login Trouble – WordPress 3.7Yeah — when you successfully login, what’s the url you get brought to?
Forum: Fixing WordPress
In reply to: Editor Login Trouble – WordPress 3.7That’s a bit weird, alright. Can you access any other wp-admin pages? Like…. wp-admin/themes.php?
Forum: Themes and Templates
In reply to: can't clear a float, help please!!Hey nuufu
This should help get you started. http://codepen.io/saltcod/pen/doiCl
Play around with that. It’s got all the basics you need— floats and clearfixing.
Good luck!
Forum: Fixing WordPress
In reply to: Blog Post TitleHey SkyNetworks,
Nice looking site there!
I just downloaded zeefocus and had a look. I think you need to delete line 14:
<span class="post-title"><?php the_title(); ?></span>from the
loop-single.phpfile. I think that should do the trick.Good luck!
Forum: Themes and Templates
In reply to: can't clear a float, help please!!Really tough without seeing the actual code, but a clearfix should fix the issue in the first screenshot. http://css-tricks.com/snippets/css/clear-fix/
After that, you’ll want to float things next to each other, rather than using position: absolute. the basic structure will look something like this:
.container ( class clearfix; width: 100px )
.content ( float: left; width: 600px )
.sidebar( float: left; width: 400px )That’s all fake code of course, but should give you the idea. Feel free to make a Codepen and I can help you with the general idea over there.
Terry
Forum: Themes and Templates
In reply to: can't clear a float, help please!!humm…..a screenshot then maybe?
Forum: Themes and Templates
In reply to: looking for themes that can achieve a similar results to theseHey maudesy!
Have you looked through the theme directory? There’s a lot of themes there, and I’m sure you’ll be able to find something pretty close to what you’re looking for.
Any of the themes you download can be modified as well. With a little bit of CSS, you can change a theme to look exactly like how you want it.
Good luck!
Forum: Themes and Templates
In reply to: LayoutproblemHey there
First off, the markup on your logo section is a bit off.
You have:
<id=”logo” class=””>…..</id=”logo”>Where it should be something like:
<div id=”logo”> …… </div>Give that a try first and we’ll have a look after that!
Forum: Themes and Templates
In reply to: can't clear a float, help please!!Hey nuufu — should be able to easily help, but it will be difficult without seeing it. Post a link and we’ll take a look.