Developers -- How can I change the background image of "Featured Properties" and "Featured Agents" on template28 homepage?
You can upload your preferred image via the media menu of the WordPress backend. Then click on the image to see the details.
Then copy the image URL and save it somewhere. You will need this URL.
Go to WPL28 Settings -> Custom CSS. Copy following code in the text area:
To change Featured Properties background image:
#top_footer_rows .widget_wpl_carousel_widget
{
background-image: URL(URL related to the background image you saved before);
}
To change Featured Agents background image:
#top_footer_rows .widget_wpl_agents_widget .background
{
background-image: URL(URL related to the background image you saved before);
}
*Note: It is recommended to remove "http://example.com " from the URL. For example, if you have this URL:
"http://example.com/wp-content/upload/wp-content/uploads/2016/01/bedroom-interior-design-blue.jpg"
You should remove "http://example.com from the URL and add it to the code:
background-image: URL(/wp-content/upload/wp-content/uploads/2016/01/bedroom-interior-design-blue.jpg);