Edit Individual Post Page

I looked through the forum and found that it might not be possible but I figured I would ask in case there are any new updates…

My news feed looks great via essential grid but when I click on “read more” to visit an individual post, it comes up with a previous layout from the demo rather than a plain layout. It also overlaps with the nav bar on the top…I attached a picture. Any thoughts on how to change that layout if possible?

Thank you!

Hello There,

​To assist you better with this issue, would you mind providing us the url of your site with login credentials so we can take a closer look?

To do this, you can create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

Thank you.

Sent the info in a secure note above…thank you!

Hi,

To fix it, you can add this in Theme Options > CSS

.single-post .x-navbar {
   position:relative;
}

.single-post .entry-wrap {
   max-width:100%;
}

Hope that helps.

Awesome! Works great thank you. Is there a way to position the whole page and/or (left aligned), change the background color from the tan to a light gray like the nav bar in addition to that?
Thanks again!

Hi There,

That is controlled/styled by a block of custom CSS on your Theme Options.

This block:

.blog .entry-wrap,
.single .entry-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  text-align: center;
  background-color: #dfd9c3;
}

Change the margin-left to 0 and the background-color to rgba(0, 0, 0, 0.25) !important

Hope it helps,
Cheers!

Works perfectly…thank you! Is there a way to add code to hide or resize the featured image at the top?

Hi There,

To remove the featured image, please try with this CSS:

.single .entry-featured{
display: none;
}

To resize, please try with this:

.single .entry-featured{
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

Let us know how it goes!

Perfect! Thanks so much!!!

You’re welcome!
We’re glad we were able to help you out.

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