paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Center Align Twenty Sixteen MenuUse this code in your child theme stylesheet
@media only screen and (min-width: 910px) { .main-navigation .primary-menu > li { display: inline-block; float: none; } .main-navigation ul { text-align: center; } }Forum: Themes and Templates
In reply to: update Wp from 3.8.13 to 4.42Before clicking the auto update make sure we have full site backup (files and database) and know how to restore it. Most web hostings have regular backup, just check with them.
The one click WP update works smoothly most of the time, but never trust anything to work without a glitch.
Also make sure theme and plugins in use is compatible with the latest WP version.
Forum: Themes and Templates
In reply to: [ColorMag] Adjust speed of Featured Cat SliderIs “Featured Cat Slider” the one shows on demo front page ? If so, it’s in this JS file ( file path: colormag/js/colormag-slider-setting.js)
https://themes.trac.wordpress.org/browser/colormag/1.1.2/js/colormag-slider-setting.jsUsually the modification should be done in Child Theme, but in this specific case, I would personally go change it in that JS file and be done with it.
If you never edit file live on the server before, be careful with it, some mistakes can bring the site down. So always have full site backup and know how to recover the site.
Forum: Fixing WordPress
In reply to: Help with Meta Tags@anrutherford , Please post this question on Yoast SEO support forum, this link here
https://wordpress.org/support/plugin/wordpress-seo#postformForum: Themes and Templates
In reply to: [Olsen Light] HTML Code for AffiliatesWP gives users full control over the comment.
This is global setting page for comments
https://codex.wordpress.org/Settings_Discussion_ScreenAlso we can control the comment in post/page individually
https://codex.wordpress.org/Comments_in_WordPress#Enabling_Comments_on_Your_SiteIf you don’t see comments available at “Page”, this means that your theme only have comments on “Post”. This is good actually because most of the time we don’t need comment on “Page”, a lot of people want it removed.
Forum: Themes and Templates
In reply to: want to remove "comments" from one age@goosgrl just for future reference, actually WP gives users full control over the comment.
This is global setting page for comments
https://codex.wordpress.org/Settings_Discussion_ScreenAlso we can control the comment in post/page individually
https://codex.wordpress.org/Comments_in_WordPress#Enabling_Comments_on_Your_SiteForum: Themes and Templates
In reply to: [Storefront] Site title question.I’d love to help with some code but the thing is it’s impossible to know what id/class the element is, so I can’t come up with the right selector. Also the theme in use (Outlet child theme of Storefront) is not a theme hosted here at WordPress.org theme repo, so it’s not officially support here.
Forum: Themes and Templates
In reply to: Change text color of Sela navigation barThis is the code responsible for current menu item color
.main-navigation li.current_page_item > a, .main-navigation li.current-menu-item > a, .main-navigation li.current_page_ancestor > a, .main-navigation li.current-menu-ancestor > a { color: #4f4f4f; }This is the code for hovering menu item
.main-navigation a:hover, .main-navigation ul > *:hover > a, .main-navigation ul > .focus > a { color: #4f4f4f; }We can just copy and paste that into child theme stylesheet and then change the color code to our own choice.
Forum: Themes and Templates
In reply to: [Storefront] Site title question.I’d leave site title and description there as normal and make the font smaller vis CSS, we can also make the font not bold, decrease line height, make it small enough to fit in the desired header’s height.
Forum: Themes and Templates
In reply to: Removing Storefront SidebarUse this code instead of what you had there in Custom CSS
.woocommerce-page #content.span8 { width: 100%; } .woocommerce-page #sidebar.span3 { display: none; }Forum: Themes and Templates
In reply to: want to remove "comments" from one ageThere is a checkbox down below post/page editing screen that allows us to enable/disable comment on the specific post/page. If you don’t see this checkbox look over to the top right and pull down the screen option.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Font size for bodyTo adjust font size for the whole page use this code
body { font-size: 16px; }To adjust font size for the post/page content use this code
article { font-size: 16px; }Forum: Themes and Templates
In reply to: [Harmonic] Header image displaying largerNo problem, I’m happy to help.
There is a mistake in my answer above, the managed sites over at .COM network does not allow Custom CSS on free account.
Forum: Fixing WordPress
In reply to: Gallery carousel doesn't launch – please helpTry disabling all plugins except this one, and see if the problem persists. If it’s still not working, post this question again but this time post it in plugin’s own forum, link here
https://wordpress.org/support/plugin/carousel-without-jetpack#postform
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Scroll over sub menu, main menu color?Please take out all CSS code that assign color to menu item that’s already in your child theme stylesheet. After that use this code, see if it works first, if it works then change the color red and green to your liking.
.main-navigation li > a { color: green; } .main-navigation li:hover > a, .main-navigation li.focus > a { color: red !important; }