Forum Replies Created
-
AuthorPosts
-
AndyKeymaster
The sliding effects are not enabled by default, so if you have enabled this you can also disable it.
Go to ‘Appearance’ > ‘Customize’ > ‘Theme Options’ and the ‘Enable Reveal Animations’ can be unselected.
Unselecting this option will disable the sliding effects of the pages.
AndyKeymaster#above-footer .widget_media_image { display: inline-block; margin: 1em; }
AndyKeymaster#above-footer .widget_media_image { display: inline-block; }
AndyKeymasterI can’t be sure from your image, but are you using the standard “Columns” block?
If so, add this CSS to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’:
@media (max-width:599px) { .wp-block-column { flex-basis: calc(50% - 16px) !important; flex-grow: 0; } .wp-block-column:nth-child(2n) { margin-left: 32px; } }
October 1, 2020 at 9:50 am in reply to: How do I make the text in the slides photos bigger only on mobile? #12277AndyKeymasterAdd this to Customize > Additional CSS (change the font-size values to the size you want)
@media (max-width: 768px) { .hero-content-wrap { font-size: 16px !important; } .hero-widget-title { font-size: 48px !important; } }
AndyKeymasterPlease let me know which “blocks” are you referring to?
AndyKeymasterThe CSS you posted –
.header-title { display: none; }
– will remove the page title across all pages of your site.If you want to remove the title only on the home page, use this instead:
.home .header-title { display: none; }
AndyKeymasterThe home page does not have the
post-id
in the body class like other pages do, it does however contain thehome
class.So the CSS to apply only to the home page would be this:
.home #site-branding .custom-logo{display: none;}
AndyKeymasterOops! Yes, good spot!
I have corrected it now, sorry about that.
AndyKeymasterAdd this php code to your child theme’s functions.php:
function cordero_fonts_url() { return; } function cordero_editor_fonts_url() { return; }
The code will make these two functions return nothing, so disabling the Google fonts.
The first function is for the front end of the website, and the second function is for the page/post editor if you also want to remove Google fonts from there.
- This reply was modified 4 years, 3 months ago by Andy. Reason: typo corrected
AndyKeymasterAny customizations made with Trusted Pro can be copied over to your child theme.
After installing and activating your child theme, go to “Theme Mods” in your dashboard (just above “Appearance” in the side panel).
On this page there are options for copying the theme customizations from free to pro, and also from Trusted Pro to a child theme.
Under the heading “*Childthemename* is a child theme of Trusted Pro” is a button “Import From Trusted Pro”.
Click this button to copy your customizations into your child theme.
AndyKeymasterTry absolute positioning with something like this:
.tree { position: absolute; top: 0; right: 30%; }
Additional info, you may also need to give the menu a z-index value to make sure its background color doesn’t disappear behind the tree image:
#site-navigation { z-index: 1; }
- This reply was modified 4 years, 3 months ago by Andy. Reason: Added additional information
AndyKeymasterIn your dashboard, go to Appearance > Widgets.
There you will see four widget areas in the footer section; “Top Footer”, “Footer Column 1”, “Footer Column 2”, and “Footer Column 3”.
Add any widget such as text, image etc to any of the four widget areas. In the text widget write your company name and year, and use the image widget to add an image.
AndyKeymasterAdd this CSS to Customize > Additional CSS:
.top-account, .top-cart { display: none; }
AndyKeymasterAdd either of these snippets of CSS to Customize > Additional CSS
#masthead.scrolled #top-bar { display: none; }
or this may be smoother effect
#masthead.scrolled #top-bar { visibility: hidden; height: 0; }
-
AuthorPosts