Archived topic
Problem with Essential Real Estate
5 replies · Started by Alberto on August 4, 2021
Hi.
I am having a problem with the Essential Real Estate plugin and GeneratePress.
Specifically, the plugin doesn't respect my template settings. I have GP set to show the body on the left and the sidebar on the right, but Essential Real Estate takes the entire width of the page and scrolls the right sidebar down ...
I was reading in the Essential Real Estate forum in Wordpress and the developer says that it is due to the design of the theme.
I would appreciate if you can help me with this.
Thank you in advance!
Hi there,
the plugin is removing the primary content container the them requires, and outputting its own Container.... which is not really the 'coding standards' in WP.
To get around that you can try adding some CSS:
@media(min-width: 769px) {
.archive .site-content #container,
.property-template-default .site-content #container {
max-width: 75%;
float: left;
padding-right: 20px;
}
}
Thank you very much David for your reply.
The css code you sent me works in part ... I am attaching another urlo so you can see that the problem persists in that place.
Thank you in advance
Updated the code above to include the single template:
https://generatepress.com/forums/topic/problem-with-essential-real-estate/#post-1883440
Thanks a lot, David! It worked perfectly!
Glad to be of help