To answer your question faster, you can search our knowledgebase articles before submitting a ticket.
Knowledgebase
Developers -- How can I change the background image of "Featured Properties" and "Featured Agents" on template28 homepage?
Posted by on 25 January 2016 03:07 AM

You can upload your preferred image via the media menu of WordPress backend. Then click on the image to see the details.

Then copy the image URL an 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);

 

 


Comments (0)