David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove footerThese will take care of your footer, You should use a child-theme or custom css to add these.
/* Remove Footer */ .footer-section { display: none; } /* Remove progress bar above footer */ .progress-wrapper { display: none; }Forum: Fixing WordPress
In reply to: White text in the visual editorSuggestion: while editing change text color to black, when done change it all back to white. That is what I do.
Forum: Fixing WordPress
In reply to: How to disable blue :active css in admin?Posting an image won’t help here. Cannot get selector information from that. Check out the links I gave you, firebug will help you figure out the selectors you need to make the changes you want. Then you can add your css to the site preferably through a Child-Theme.
Forum: Fixing WordPress
In reply to: Large Video Loaded but Won't PlayTry this plugin. Works for me for a selfhosted video
Forum: Fixing WordPress
In reply to: How to disable blue :active css in admin?Without a link or more information there is little that anyone can help with, however here is how you can find the answer you seek.
You should check this out for customizing your site.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comForum: Fixing WordPress
In reply to: remove commentsIf you turned off comments after posts/pages were created you need to use the quick-edit for your posts/pages and turn off comments on each post/page.
Forum: Fixing WordPress
In reply to: Header is not displayingLooks like it cannot find the image file.
No, anything between /* and */ is ignored.
You don’t have to use hex color codes either, you can use the color name. It might be a selector problem, I have never used 20-12 theme.This will help you:
You should check this out for customizing your site.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comForum: Fixing WordPress
In reply to: WordPress Child Theme HelpOK, I have never used that.. copy your customizations to a text file then add them to your child theme.
You can add it at the bottom. Add this to it so you know to copy it before you update the theme.
/* My Custom Title */ .singular .entry-title { color: #000000; /* change #000000 to what hex color you would like */ font-size: 36px; /* change to make title bigger or smaller */ font-weight: bold; /* makes title bold */ }Forum: Fixing WordPress
In reply to: WordPress Child Theme HelpCopy your customizations to the new style.css and functions.php files in your child theme before you update. Here is how to create a child theme.
The best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
Forum: Fixing WordPress
In reply to: Menu won't show upHave you set the LOCATION for your menu? Look in the same area where your menu editor is located.
The best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
Forum: Fixing WordPress
In reply to: Strange numbers – 11111 – in header; can't get rid of 'emYou actually can place the header and footer files in your child theme as a whole, so essentially you only need to compare the style.css files between yours and a unaltered version. Then place your customizations in the child’s style.css file. Setting up a child theme is pretty easy actually.
Forum: Fixing WordPress
In reply to: Strange numbers – 11111 – in header; can't get rid of 'emmake a backup copy of your files, download the theme to your computer and compare, then you can save your edits. I suggest downloading the same version you are using on your site. Put your customizations in a child theme and you will never lose them.
The best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/