Right sidebar not showing + Customize featured image posts + Modify Placeholder text of a widget

Hi,
I’ve got three questions:

  1. I can’t make the sidebar to show in the Posts (and in the blog page) on the right side. On Customization > Layout and Design, I set the Site Layout to “Fullwidth”, and the Content Layout to “Content Left, Sidebar Right” (74%). On Customization > Blog, I set the Style on “Standard” and the Layout to “Use Global Content Layout”. How can I put the sidebar on the right side?

  2. How can I customize the Featured Image and other elements in the Post pages? For example, how can I change the class of the Featured Image from “attachment-entry-fullwidth” to “attachment-entry”?

  3. How can I modify the Placeholder text of Search widget?

Blog page link: http://giacomodenanni.it/blog/

Thanks!

Hey there,

  1. I see you have a custom function that overrides the Content Layout setting. Please remove it from your functions.php

2-3. This would need custom development. We do have an in-house custom development team that offer paid services, who may be able to assist. They can be contacted at pinnacle@theme.co if this is of interest to you.

Thank you for your understanding.

Hi,
I removed the custom function from functions.php, and now the sidebar is on the right side in the Blog page. But it is not showing on in a single Post page, like this one: http://giacomodenanni.it/blog/xinlab-un-blog-molteplice/
How can I put the sidebar also in the single Post pages?

Hope I make myself clear…
Thank you!

Hey,

To display sidebar on posts / pages, you’ll need to change the content layout from full width to Content Left, Sidebar Right or Sidebar Left, Content Right this can be done via X > Launch > Options > {Your-Stack-Name} > Content Layout.

Hi,
I’m using Pro Theme, not X, and unfortunately I cannot find the section you are talking about.

Thanks!

Hi There,

The sidebar is not showing because of the following CSS:

.single-post .x-main.left {
width: 100%;
max-width: none;
}
.single-post aside.x-sidebar.right {
display: none;
}

That CSS makes your container for content 100% in width then hide the sidebar. Please remove it from here:

After doing that, the space for sidebar will show but then it will still be blank. That is because by default single post will display the content of Main Sidebar from Appearance Widget, but as of the moment you don’t have anything there. Add content and you are good to go.

Hope this helps.

1 Like

Hi, it works perfectly!

Thank you very much indeed!! :slight_smile:

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.