Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #574042

    hi. i want to change my blog layout. can you please help me with this yigit?

    #574085

    Hi Alexander!

    Please go to Appearance > Editor and open functions.php file and find and edit following line

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries

    then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    And then add following code to Quick CSS

    .read-more-link {
        font-size: 20px;
    }

    Best regards,
    Yigit

    #574104

    Hi. I only have this in my functions.php

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /* Blogvorschau zeigt nur ausgewählte Kategorien  */
    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }
    #574122

    Hey!

    Alright, you are using a child theme :)

    Please add following code to functions.php file of your child theme

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['entry_with_sidebar'] = array('width'=>300, 'height'=>300);
    return $size;
    }

    adjust values as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #574127

    Done.

    #574129

    But still look the same….

    #574134

    What must i change that my site looks like this?

    #574136

    sorry yigit. a missunderstanding!

    #574143

    Hey!

    Sorry about that Alexander, misunderstanding for sure :)
    Please edit one of your blog posts and then click “Screen options” on the top right corner and check “Excerpt” and then scroll below your blog content and add Excerpt manually :)

    Best regards,
    Yigit

    #574164

    WOW. Amazing! Thank you.

    #574166

    How can i disable the mouse over overlay at the blog images?

    #574169

    And how can i increase the size of the text content and the images inside the sidebar?

    #574220

    Hi!

    Please add following code to Quick CSS

    .big-preview.single-big .image-overlay {
        display: none!important;
    }
    .sidebar_right > .container {
        padding-right: 10px;
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Regards,
    Yigit

    #574429

    Thank you, i have added the code. but there is an error on the left hand side inside the sidebar.

    #574732

    Hi!

    Please add following code to Quick CSS

    .inner_sidebar {
        margin-left: 10px;
    }

    Cheers!
    Yigit

    #582226

    CLOSED. Thank you.

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘change blog’ is closed to new replies.