Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    It is also available on ww.wp.xz.cn, where is where I downloaded it (the site is self-hosted): https://ww.wp.xz.cn/themes/goran

    Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    Just read this on http://theme.wordpress.com/themes/goran/

    Custom Header Image

    Pages without a Featured Image will display a Custom Header if you’ve uploaded one. To add a Custom Header go to Appearance → Header and select your header image. The Custom Header is not displayed on the front page if you’ve set it to display your latest posts under Settings → Reading; it will be displayed if the front page is set to display a static page.

    Does anyone know how to get around this?

    Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    I think I have a theory. Goran is based on Edin. The custom header applies to the pages I created within my admin panel for Goran, but does not apply to my index page based on the Edin theme. Here is the code I have for my index.php in the Edin main theme.

    get_header(); ?>

    <div class=”content-wrapper clear”>

    <div id=”primary” class=”content-area”>
    <main id=”main” class=”site-main” role=”main”>

    <?php if ( have_posts() ) : ?>

    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>

    <?php
    /* Include the Post-Format-specific template for the content.
    * If you want to override this in a child theme, then include a file
    * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    */
    get_template_part( ‘content’, get_post_format() );
    ?>

    <?php endwhile; ?>

    <?php edin_paging_nav(); ?>

    <?php else : ?>

    <?php get_template_part( ‘content’, ‘none’ ); ?>

    <?php endif; ?>

    </main><!– #main –>
    </div><!– #primary –>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    Another problem. The theme calls for a header image measuring 1230 x 576 pixels. That is exactly the size I received from my graphic artist. I put them online as is and you will see that they are out of wack. Any ideas?

    This is my 3rd WordPress site, and the header images systematically cause me headaches 🙁

    Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    Also, I just realized that the problem occurs only on the home page. Hope this helps.

    Forum: Fixing WordPress
    In reply to: Header image
    Thread Starter Vortexte

    (@vortexte)

    This is what I have in style.css for the header.

    /* Header */
    .site-top-content {
    padding: 6px 24px;
    background: #403f3f;
    font-size: 0.875em;
    line-height: 1.71429em;
    text-align: right;
    }
    .site-header {
    background: #2D6CA8;
    color: #fff;
    }
    .site-logo {
    display: block;
    margin: 24px auto;
    width: auto;
    max-height: 96px;
    }
    .site-description,
    .site-title {
    text-align: center;
    }
    .site-description {
    display: none;
    margin-top: -14px;
    margin-bottom: 24px;
    color: #757575;
    font-weight: normal;
    font-size: 0.875em;
    line-height: 1.71429em;
    }
    .site-title {
    margin-top: 24px;
    padding-bottom: 13px;
    color: inherit;
    }
    .site-title a,
    .site-title a:hover,
    .site-title a:focus,
    .site-title a:active {
    color: inherit;
    }
    .header-image {
    display: block;
    }
    .header-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    }

Viewing 6 replies - 1 through 6 (of 6 total)