Bill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can no longer edit HTML or Change TABS need new plugin?Have you tried the support channel for the plugin? Maybe they have an update for you, especially if it stopped working in 4.3.1.
Forum: Fixing WordPress
In reply to: Беда с интернет магазином.Try asking your question in this forum:
https://ru.forums.wordpress.org/Forum: Fixing WordPress
In reply to: Hatched Area with StickyTry asking about this on the support forum for the theme so its users and developers can help you with it. Good luck!
Forum: Fixing WordPress
In reply to: Plugin ErrorIf you can’t access your admin pages, you’ll need to use an FTP client (like FileZilla), or your host’s cpanel (or File Manager) and navigate to the files on the server.
In your WP installation there, find
wp-content/plugins/wp-social-buttons(if that is the plugin) and rename that plugin’s folder to something likewp-social-buttons-hold. That will disable it and hopefully allow you to get back into WP admin.Don’t forget to first clear your browser cache and cookies before trying to log in again.
Then visit https://wordpress.org/support/plugin/wp-social-buttons and ask about the problem there. Good luck!
Forum: Fixing WordPress
In reply to: Permalinks 404, a continuing issueTry re-saving your permalink settings at
Settings > Permalinks, but I believe that .htaccess will have to be writable by WP in order to be successful in that. Most of the time, re-saving clears up those 404s.EDIT: reference https://codex.wordpress.org/Using_Permalinks
Forum: Fixing WordPress
In reply to: Italic formatting disappears when pasting ODT textI see. Maybe take a look at this link. It refers to MS Word, but as LibreOffice tries to (sort of) emulate it, it bears considering.
https://codex.wordpress.org/User:Wordsforwp/New_to_WP_FAQ_restructure#Can_I_copy_and_paste_text_from_Microsoft_Word.3FForum: Fixing WordPress
In reply to: Italic formatting disappears when pasting ODT textTake a look at that, because I think your browser would default to using an italic font for an
<i>element. Maybe there is a normalizing component in your style sheet that’s negating it.Semantically speaking,
<i>should be reserved for things like foreign words, book titles and such.<em>is used for emphasis of words or phrases. Alternatively,<cite>could also be used for titles.Forum: Fixing WordPress
In reply to: Formatting Issue on Homepage, Overlapping Image and TitleSorry about that. By your first post I got the impression you already had some experience with this type of modification.
If your theme has custom css available in Customizer, you can use that for adding your changes.
If not, go to the plugins repository and pick a css plugin that has good star-ratings, a large number of active installs, and is pretty recent in its updates. Once installed, add something like this to your custom styles:
.page-template-homepage-php .home-top .asseenin h2 { margin: 15px 0 15px 20px; }I only changed the ‘-15′ to ’15’ as you can see from my previous post. You can adjust the number smaller if you like. Let me know if that isn’t clear enough. Good luck!
Forum: Fixing WordPress
In reply to: Formatting Issue on Homepage, Overlapping Image and TitleIn your theme styles is:
.page-template-homepage-php .home-top .asseenin h2 { margin: 15px 0 -15px 20px; }The negative bottom margin is causing this. You can change it to positive or whatever else suits you. Make sure you make this change in a custom styles plugin or child theme.
Forum: Fixing WordPress
In reply to: Italic formatting disappears when pasting ODT textDoes your theme have style rules for the
<i>element?Forum: Fixing WordPress
In reply to: Child Theme ProblemSince this is a commercial theme, you probably should start by asking the developers about it. They may have some non-standard structure going on with the way their themes are set up. It looks like they already have child themes built into the parent theme.
http://www.templatemonster.com/help/monstroid-wordpress-theme.htmlForum: Fixing WordPress
In reply to: mistake on Site Address (URL)Starting over again is sometimes the best way to go when things are getting too tangled. I hope everything goes smoothly for you now.
I think you should go ahead and mark this thread as resolved now, since too much has changed in your site and settings for this thread to be of much relevance for you now. Just open a new thread if you need anything. Good luck!
Forum: Fixing WordPress
In reply to: Vitue theme remove social linkHi Amit. I looked at your linked image and see the problem you highlighted. But those buttons do not appear when I visit your site.
I see them in the source code, probably built into your theme but I really don’t know. Maybe try adding this to your custom css:
p.no-break { display: none !important; }or ask about this in your theme support channel.
Forum: Fixing WordPress
In reply to: Change Comment box Font colorDavid, go ahead and mark this as resolved since the original question has been taken care of.
The last one you tacked on here seems to resolve with the following:
.postid-100 #bbpress-forums > div:nth-child(7), .postid-100 #no-topic-0 { display: none; }I can’t make any guaranties on this one because these forum pages are very dynamic and constantly update, and one of the elements in question has no unique identifier that I can use. If (7) changes for some reason, it will have to be adjusted. There may be other (better) ways to go about this (as is common with css), but this is my shot for now. You might want to ask in the forum for bbpress.
Forum: Fixing WordPress
In reply to: Change Comment box Font colorI like Firebug mainly because I’m used to it, I think. It’s very good and worth installing just to try it out. Try both it and the built-in tools and see what you think.
I just noticed, we need to adjust one more time the above to:
#bbpress-forums input.text, #bbpress-forums textarea, #bbpress-forums input[type="text"] { color: #000 !important; }to get everything in agreement. I hope that gets you there.