Forum Replies Created

Viewing 7 replies - 16 through 22 (of 22 total)
  • Hi!
    You need to add next code via custom CSS plugin or into style.css in your child theme

    .page-template-page-full-width .entry-title {
       text-align:center;
    }

    Child themes tutorial – here
    Custom CSS plugin (this for example, you can use anyone) – here

    tefox

    (@tefox)

    To force logo fill all header you also need create child theme and rewite header.php. Than move azeria_logo() from .container. Also some CSS modification will be required.

    tefox

    (@tefox)

    Hi @5ingingwolf,
    yes, this icon added via Font Awesome. Font files located in Azeria theme in fonts folder. When new version of Font Awesome will be released – we update Azeria theme, so you’ll get it automatically.

    tefox

    (@tefox)

    Hi @fuhi,
    Header image added as background to .site header, so you can’t add link directly to this image. You can try to do this in 2 ways:
    1) Create own child theme for Azeria. In child theme rewrite template header.php – add header image with <img> tag and wrap this image into link. Something like this (just example, not tested):

    <?php
    $header_image = get_header_image();
    if ( $header_image ) :
    ?>
    <a href="https://your-link-url">
        <img src="<?php echo esc_url( $header_image ); ?>" alt="">
    </a>
    <?php
    endif;
    ?>

    But this way requires a lot of customization.
    2) Upload this image as logo (if you need link to your home page)

    tefox

    (@tefox)

    Hi @bithons!
    The better way to change thumbnail sizes is create your own child theme for Azeria. Then add to your child theme file functions.php with next code:

    <?php
    add_filter( 'azeria_image_sizes', 'azeria_child_image_sizes' );
    function azeria_child_image_sizes( $sizes ) {
    
    	$sizes['post-thumbnail'] = array(
    		'width'  => 850,
    		'height' => 400,
    		'crop'   => true
    	);
    
    	return $sizes;
    }

    This sizes will be applied for all new images. To change size of existing images – you need to use Regenerate Thumbnails plugin. We checked this code with exactly the same size image as you describe – all works fine.

    Child themes tutorial you can find here

    tefox

    (@tefox)

    Hi @the bsbrb,
    You need to add next code via custom CSS plugin or into style.css in your child theme

    .comment-list {
        counter-reset: azeria-comments;
    }
    .comment-body {
        counter-increment: azeria-comments;
    }
    .comment-body:before {
        content: counter(azeria-comments, decimal);
    }

    Then you can style this counter as you need, just add styles to this element – .comment-body:before

    Child themes tutorial – here
    Custom CSS plugin (this for example, you can use anyone) – here

    Hi @kisslinger.uli,
    You need to add next code via custom CSS plugin or into style.css in your child theme

    .site-logo:after {
        display:none;
    }

    Child themes tutorial – here
    Custom CSS plugin (this for example, you can use anyone) – here

Viewing 7 replies - 16 through 22 (of 22 total)