Your comments

Hello!

Thanks for writing back! Evolv does things a little differently compared to other themes in the BoldGrid Theme Framework, so I think your best bet for this one is to actually use a snippet of custom JavaScript.

You may need to tweak this based on your color palette. Navigate to Customize -> Advanced -> Custom JS & CSS and paste the following snippet, exactly as it appears here, into your Custom Theme JS box:

jQuery('body').not('body.page-template-page_home').removeClass('custom-background').addClass('color4-background-color');

Basically, what this will do is select every post and page that's not "page-template-page_home," i.e. your Home Page, and remove the "custom-background," then add the "color4-background-color." 

The part that you might need to tweak is the number in the last set of parentheses. For reference, check out your color palette in Customize -> Colors and use this numbering scheme:

Generally speaking, numbers 4 and 5 are going to be the best for your background.


I hope this helps!

Hello,

Thank you for the excellent question. The Westview theme was designed only to use the background on Pages, not posts and archives.

In order to override this and show your background everywhere, navigate to Customize -> Advanced -> Custom JS & CSS and copy-and-paste this CSS rule into your Custom Theme CSS box:


.palette-primary.archive .site-content, .palette-primary.archive .site-header, .palette-primary.single .site-content, .palette-primary.single .site-header, .palette-primary.blog .site-content, .palette-primary.blog .site-header {
background: unset;
}

I hope this helps

Hello!

Yes, there is a typo in your JavaScript. Remove the two forward-slash characters at the very beginning ( // ), and make sure that the snippet is pasted in exactly as it appears here

jQuery('body.page-template-default #masthead > div:nth-child(3)').addClass('mod-space-home');

Hello,

Thank you very much for letting us know about the bug caused by the recent update to the Backup plugin.

Our team has released a fix for this bug in the latest update, version 1.11.8

If you were unable to deactivate the Backup plugin using the automated recovery email, you should try disabling it via FTP/File Manager or WP-CLI to restore access to your Dashboard.

Once the plugin is disabled you should be able to download the newest update and reactivate the plugin.

Thank you for your understanding and we are sorry for any disruptions this bug has caused you. Please let us know if there is anything else that we can do to assist you.

https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-ftp-or-file-manager/

https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-wp-cli/

Hello,

Thank you very much for letting us know about the bug caused by the recent update to the Backup plugin.

Our team has released a fix for this bug in the latest update, version 1.11.8

If you were unable to deactivate the Backup plugin using the automated recovery email, you should try disabling it via FTP/File Manager or WP-CLI to restore access to your Dashboard.
Once the plugin is disabled you should be able to download the newest update and reactivate the plugin.

Thank you for your understanding and we are sorry for any disruptions this bug has caused you. Please let us know if there is anything else that we can do to assist you.
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-ftp-or-file-manager/
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-wp-cli/

Hello,

Thank you very much for letting us know about the bug caused by the recent update to the Backup plugin.

Our team has released a fix for this bug in the latest update, version 1.11.8

If you were unable to deactivate the Backup plugin using the automated recovery email, you should try disabling it via FTP/File Manager or WP-CLI to restore access to your Dashboard.
Once the plugin is disabled you should be able to download the newest update and reactivate the plugin.

Thank you for your understanding and we are sorry for any distruptions this bug has caused you. Please let us know if there is anything else that we can do to assist you.
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-ftp-or-file-manager/
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-wp-cli/

Hello,

Thank you very much for letting us know about the bug caused by the recent update to the Backup plugin. 

Our team has released a fix for this bug in the latest update, version 1.11.8

If you were unable to deactivate the Backup plugin using the automated recovery email, you should try disabling it via FTP/File Manager or WP-CLI to restore access to your Dashboard.
Once the plugin is disabled you should be able to download the newest update and reactivate the plugin.


Thank you for your understanding and we are sorry for any distruptions this bug has caused you. Please let us know if there is anything else that we can do to assist you.
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-ftp-or-file-manager/
https://www.boldgrid.com/support/wordpress-tutorials/disabling-a-plugin-with-wp-cli/

Hello!

Thanks for the excellent question. You're right, in BoldGrid Resolve, the background image is only given its full height on the front page to make room for a call-to-action widget.

If you'd like to get your other pages to follow the same look and feel, you can do this with a custom JavaScript in your Customize > Advanced > Custom JS & CSS. Paste the following snippet into your Custom Theme JS box:

jQuery('body.page-template-default #masthead > div:nth-child(3)').addClass('mod-space-home');

I hope this helps!

Hello,

Thanks for the great question. You can do this with a little bit of custom CSS, which I'll be happy to write for you. 

In order for me to make sure I get you the right CSS snippet, may I ask which Theme you're using on your website? You can find this by visiting Customize > Change Themes and looking for the one that has the banner at the bottom that says Active.

Looking forward to helping you out!

Hello,

Thanks for the great question. That spacing is actually baked into the theme itself.

There are two separate styles that control the spacing at the top of your entry content. In order to reduce these, navigate to your Customize > Advanced > Custom JS & CSS menu, and paste the following snippet into your Custom Theme CSS:

.entry-content { padding-top: 0px !important; }

That will reduce the space from 6.5em to 1.5em. If you want to eliminate all of the space, use this CSS:

.entry-content { 
    padding-top: 0px !important; 
    margin-top: 0px !important;
}

I hope this helps!