Thanks for the advice!
It worked well, even without
.hm6.x-bar.x-bar-fixed {
background-color: transparent !important;
}
But, now i have another problem. My category descriptions are transparent, too. And there is a transparent bar at the bottom of each category site. Is it possible to change that back to white?
to make the category description possible I added _content-post-header.php to my child theme with the code
<header class="entry-header">
<?php if ( is_single() ) : ?>
<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>
<div class="center-text"><?php echo category_description(); ?></div>
<?php endif; ?>
<?php x_icon_entry_meta(); ?>
<?php if ( get_post_format() == 'quote' ) : ?>
<p class="entry-title-sub"><?php echo get_post_meta( get_the_ID(), '_x_quote_quote', true ); ?></p>
<?php endif; ?>
</header>
and i added this to the functions.php
add_action('x_before_view_global__index', 'icon_archive_title');
function icon_archive_title () {
if( is_category() ) : ?>
<?php $title = ( $meta['archive-title'] != '' ) ? $meta['archive-title'] : single_cat_title("", false); ?>
<header class="x-header-landmark x-container max width">
<?php echo category_description(); ?>
</header>
<?php endif;
}
How can I achieve a white background for my category sites, now that I changed the settings of the x-bar as i wished it to be?