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%;
}
Building a store without paying for ads means providing content which gets people to your website, dropshipping can pay off very well on organic traffic.
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.
Issue for many with the homepage blogroll and sidebar having bold and or italic text is due to the way Acabado pulls in the excerpt to be used.