Bill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Center the blog titleTry adding the following to your custom css plugin or child theme:
.site-header h1 { text-align: center; }When making changes to your theme styles, you’ll either want to use a custom css plugin (which you can browse here), or put it into the style sheet of a child theme. If you already have the Jetpack plugin installed, you can use its Custom CSS module.
Changes made to the theme itself will be lost when the theme is updated.
Forum: Fixing WordPress
In reply to: Published status is not showingAre you logged in as admin or another role that has publishing capabilities? Go to your profile and double check that your role hasn’t changed somehow. Otherwise, do you have a plugin related to setting roles/capabilities or for allocating writing/publishing duties?
Forum: Fixing WordPress
In reply to: reduce line spacing(Thanks, Andrew!)
Forum: Fixing WordPress
In reply to: .site-header command doesn't workGlad you got this worked out. Yeah, spelling something wrong or forgetting a semi-colon or some other little thing can bring things to a standstill pretty quickly.
You can add as many classes as you need to an html element to give you a way to pinpoint a specific target for your styles (css).
Forum: Fixing WordPress
In reply to: .site-header command doesn't workIf your code actually is identical, then make sure you clear your browser cache between changes to make sure you see them. Also make sure your header actually has the class
site-header.Forum: Fixing WordPress
In reply to: 404 not found message when trying to log-in to adminYou’re welcome! Go ahead and mark this as resolved, but continue here if you need to.
Forum: Fixing WordPress
In reply to: please help Warning: Missing argument 2You should ask about this in the support channel for your commercial theme for best results.
Forum: Fixing WordPress
In reply to: 404 not found message when trying to log-in to adminGlad you made some progress! You’ll find all the details about the method you used on the same page as linked above, but further down the page:
http://codex.wordpress.org/Changing_The_Site_URL#Relocate_method
Yes, you need to remove those lines.Forum: Fixing WordPress
In reply to: reduce line spacingThe line height is coming from your theme’s css, naturally. In it you’ll see:
.post-content p, .post-content blockquote, .post-content ul, .post-content ol, .post-content address, .post-content dl, .post-content .wp-caption, .post-content pre { line-height: 170%; margin-bottom: 1.1em; }You’ll need to adjust the line-height value to one that suits you better.
When making changes to your theme styles, you’ll either want to use a custom css plugin (which you can browse here), or put it into the style sheet of a child theme. If you already have the Jetpack plugin installed, you can use its Custom CSS module.
When you get set up, add something like:
.post-content p, .post-content blockquote, .post-content ul, .post-content ol, .post-content address, .post-content dl, .post-content .wp-caption, .post-content pre { line-height: 120%; }but with an adjusted value, of course. You can remove any of the elements listed that you don’t want affected by this change, making sure to separate each with a comma.
Forum: Fixing WordPress
In reply to: 404 not found message when trying to log-in to adminYou need to change the urls back to what they were before. Have a look at this page which has detailed instructions for doing that.
Don’t be put off by how much info that page has. Read the intro paragraphs, and then look specifically at the section I linked you to: Edit functions.php. It’s just a few steps, but be sure to take it step by step.
That page has links about using ftp if that’s new to you. If you still aren’t sure how to access the file, ask your web host to help you.
Forum: Fixing WordPress
In reply to: Post Disappears After PUBLISH, There but not there…I’m glad you got this worked out! I was going to mention the possibility of an incorrect date but saw that the date of the post was already current.
Thanks for posting your findings for someone else coming across your thread. Cheers.
Forum: Fixing WordPress
In reply to: Cannot save or edit pages and widgesStart by disabling all plugins to see if your trouble clears up.
If it does, start reactivating them one at a time to find the problematic one.
If disabling all plugins doesn’t change anything, leave them disabled and switch to the default theme and check again. Make sure to clear your browser cache when you check each time.
Forum: Fixing WordPress
In reply to: Post Disappears After PUBLISH, There but not there…Are you still having this problem? I see your post using the link above, and also see it on your home page, as well being as listed on your ‘kitchen sink’ page. Hoping it cleared itself up for you by now.
Regarding your save button going missing, I see you found another thread with the same trouble. You might want to start a new thread yourself for just this issue, since it may or may not be related. If it were me, I would start by disabling all plugins to see if the button comes back. If so, start reactivating them one at a time to find the troublemaker.
Forum: Fixing WordPress
In reply to: Article Slider Won't Remove ArticleMight be better to ask your question in the slider’s support forum. They’ll have a better understanding of the possible issues here. Good luck!
Forum: Fixing WordPress
In reply to: Site not loadingYour Mentor theme seems to be having an issue. Log in to your hosting account and use their file manager to navigate to wp-content/themes. If you have a default theme like twentyfifteen installed there, rename the Mentor folder to disable that one. Hopefully this will bring you back online (but with 2015) so you can get your preferred theme worked out.