When you look to make changes to the logo you are restricted to the size and width within the code in the theme files. Well, when you want to look into a larger logo you have two methods, either edit the file itself or by code snippets.
You will then need to paste in the Custom CSS below to help give a base to change the size of the logo when you have smaller screen sizes. You will have to adjust this depending on your image size. The below code will make the width no more than 50% of the width of the site.
.site-branding img {
height: auto;
width: auto;
max-width: 50%;
}
This change will allow you to change out the logo for any size logo you create.
Have to edit the theme manually as you should only need to upload once into the field this should work fine as the next update will wipe out this change but the loaded image is always kept.
Apearance -> Theme Editor -> INC -> acf-fields.php
find (approximate) line 628 and 629
change them to match below
'min_width' => 0,
'min_height' => 0,
Now you can set anything up to 480×480
To make it wider change (approximate) line 631 and 632 from 480 to your needed size as wide as needed.
'max_width' => 480,
'max_height' => 480,
Then you need to change and add the following Custom CSS to drive the actual sizing. You need to change the height and width to your image pixel size.
.site-branding img {
height: 240px;
width: 480px;
max-width: 100%;
}
The rating stars in Acabado have no ability to change within the controls. We cover how to use the Custom CSS option to modify and set the color manually.
Running Woocommerce on Acabado is a nice way to get you a storefront that runs exceptionally fast to have a storefront like dropshipping or more!
For the links like the about button to function they pull content, sometimes hosting will detect this and block the functionality and this is meant to help ID.
Covering how you can use Elementor to build a landing page for your website to sell an e-book, info product, or pull a email signup list with giveaway!