I need some help here.
- I need to set the background color to the light grey but just on the one page, not entire website.
- I need put breadcrumbs above the title on a post page.
- Is it possible to delete the next post button (marked with yellow X)

I need some help here.

Hi @waynepatt58,
Thanks for reaching out.
It’s only possible with a custom template, I could provide general information but we can’t provide further customization.
And since you already have a child them, let’s skip that step. And please check this if you’re not yet familiar with FTP https://www.bleepingcomputer.com/tutorials/introduction-to-ftp/, and you’ll use an FTP client that will serve as or similar to a file manager
function x_entry_navigation() {
}
That’s for removal of the arrow navigation.
\framework\views\ethos\_content-post-header.php from the main theme into child theme, example\x-child\framework\views\ethos\_content-post-header.php
Then change its entire content into this
<?php
// =============================================================================
// VIEWS/ETHOS/_CONTENT-POST-HEADER.PHP
// -----------------------------------------------------------------------------
// Standard <header> output for various posts.
// =============================================================================
?>
<header class="entry-header">
<?php x_breadcrumbs(); ?>
<?php if ( is_single() ) : ?>
<?php x_entry_navigation(); ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php else : ?>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a>
</h2>
<?php endif; ?>
<?php x_ethos_entry_meta(); ?>
</header>
Save and upload it.
.single-post .x-container.main:before {
background-color: #f8f8f8;
}
Hope this helps.
Very helpful Rad, just out of interest if I payed you guys would you do a custom template?
Hello There,
I might not be able to give you a precise answer to that. I would recommend that you contact our developers directly.
Please do it here: https://theme.co/x/contact/
Regards.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.