Aleksandar - WPMU DEV Support
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] How do I change font color ?Hello @jimmie77
I don’t know anything about code,etc.Looking for simple way to change font color.
All you have to do is copy the provided code and paste. ?? That is what we are here for.
Can I ask exactly what you would like to style? If you would like to style all text on your site, you can use this.
body { color: #000000; }
If you would like to style just your headings, you can use this.
h1,h2,h3,h4,h5 { color: #000000; }
If you would like to style just your paragraphs, you can use this.
p { color: #000000; }
All you have to do is copy and paste which code you want to style different elements of your site in to this plugin. After the plugin is installed and activated, you can simply go to Appearance > Custom CSS > copy and paste the code > click Save Changes.
Hope this helps.
Thanks,
AlexForum: Themes and Templates
In reply to: [Pinnacle] Restting footer copyright dateHello,
Please consider creating a Child Theme before replacing code in the following template.
If you navigate using FTP or a File Manager to public_html/wp-content/themes/pinnacle/templates/footer.php, open the file and locate this code.
if(!empty($pinnacle['footer_text'])) { $footerstring = $pinnacle['footer_text']; $footerstring = str_replace('[copyright]','©',$footerstring); $footerstring = str_replace('[the-year]',date('Y'),$footerstring); $footerstring = str_replace('[site-name]',get_bloginfo('name'),$footerstring); $footerstring = str_replace('[theme-credit]','- WordPress Theme by <a href="https://www.kadencethemes.com/" target="_blank">Kadence Themes</a>',$footerstring); echo '<p>'. do_shortcode($footerstring).'</p>';} ?>
This is the code responsible for outputting your copyright info.
Hope this helps.
Thanks,
AlexForum: Themes and Templates
In reply to: [Fruitful] WhitespaceHello,
Yes – that seems to have did the trick!! It didn’t occur to me to check the other pages as I was so focused on the home page for so long – thanks mucho grande!!!
You are welcome, happy to help. ??
Have a great day!
AlexForum: Themes and Templates
In reply to: [Fruitful] WhitespaceHello,
Could you please try replacing my code with this? This CSS will target your home page which has an class of 701.
.page-id-701 .page-container { /*Change the margin value to what ever you would like. Just remember to put px or % after the numerical value if it isn't 0*/ margin-top: 0 !important; }
Thanks,
AlexForum: Themes and Templates
In reply to: [Storefront] Remove sidebar from all woocommerce pagesHello,
It actually is working. ?? You are probably not seeing the changes because of your website cache. Always clear your website cache after updating CSS files. A caching plugin might include WP Super Cache, W3 Total Cache, or WP Rocket.
I believe this CSS will better accomplish your goal, could you please replace my previous code with this?
.post-type-archive-product .widget-area { display: none; } .post-type-archive-product .content-area { width: 100%; }
Thanks,
AlexForum: Themes and Templates
In reply to: [ProfitMag] How to modify menu bar?Hello,
!important worked!!!!!!!!!
Great, glad to hear that!
Have a great day!
AlexForum: Themes and Templates
In reply to: [ProfitMag] How to modify menu bar?Hello,
Could you please try this CSS? NOTE: the !important rule should only be used if you absolutely have to use it. You can read more about the !important rule below.
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity#The_!important_exception.home-icon.icon-active { margin-top: -4px; height: 37px !important; }
The other thing it could be is if you have a typo in your CSS somewhere, that can mess the rest of your code up if the above CSS is below the code with an error. A tool like this can help check your CSS for errors.
https://jigsaw.w3.org/css-validator/#validate_by_inputThanks,
AlexForum: Themes and Templates
In reply to: [Fruitful] WhitespaceHello,
Glad I could help. ??
Have a great day!
AlexForum: Themes and Templates
In reply to: [Fruitful] WhitespaceHello,
Thanks for providing your site link. I can see the same in my web inspector and I believe my CSS posted above will fix your issue. ??
Could you please give it a try and let us know how it turns out?
Thanks,
AlexForum: Themes and Templates
In reply to: [WEN Business] Add SEO metatags to head sectionHello,
where is the file manager or ftp?
You can find your FTP information at your web hosting provider. A web hosting provider might be a company such as GoDaddy, BlueHost, SiteGround, ETC.
A File Manager is usually found in your web hosts control panel. A popular control panel is called cPanel.
Hope this helps.
Thanks,
AlexForum: Themes and Templates
In reply to: [Fruitful] WhitespaceHello,
Could you please link us to your site so we can check your issue? From the HTML you have wrote out, I believe this code will work for you.
.page-container { /*Change the margin value to what ever you would like. Just remember to put px or % after the numerical value if it isn't 0*/ margin-top: 0 !important; }
You can add this in a Child Theme style.css file or you can use a custom CSS plugin.
Thanks,
AlexForum: Themes and Templates
In reply to: [WEN Business] Add SEO metatags to head sectionHello,
Could you please access your site via FTP or File Manager and copy your header.php template from your parent theme to your child theme? Then you can insert the code before the closing
</head>
HTML tag in the template.
Hope this helps.
Thanks,
AlexForum: Themes and Templates
In reply to: [Storefront] Remove sidebar from all woocommerce pagesHello,
Could you please give this CSS code a try?
.woocommerce .widget-area { display: none; }
You can add this in a Child Theme style.css file or you can use a custom CSS plugin.
Please let me know how it goes.
Have a great day!
Alex