Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #353542

    Hi,

    As you can see http://kamis.gov.tr/?p=373 there is an empty place between title and line. How can I reduce that. Also is there a way to change “Blog-En Güncel Haberler” text.

    Also, is there a way to align left title and date?

    thanks

    #353575

    Hey om_eraydin!

    Thank you for using our theme.

    If you want to reduce the space between title and headline put in Enfold->Styles->QUICK-CSS field or custom.css and adjust the value:

    
    .single-post .content {
    padding-top: 30px !important;
    }
    

    To align the title and date put in Enfold->Styles->QUICK-CSS field or custom.css:

    
    
    #top .fullsize .template-blog .post-meta-infos {
        text-align: left !important;
    }
    
    #top .fullsize .template-blog .post-title
    {
    text-align: left !important;
    margin: 0 !important;
    }
    

    Regards,
    Günter

    #353580

    Gunaydin @om_eraydin
    1- to reduce the height of the breadcrumb line add theses lines into your style.css of the child theme or Enfold->Styles->QuickCSS field
    #top .title_container .container{
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    min-height: 36px !important;
    }
    2- to reduce the the empty place between title and the corps of the post (but it will effect all “content” classes :
    .content{
    padding-top: 20px !important;
    }

    #353588

    Hi!

    To change blog title you can use a filter. In functios.php add the following:

    
    add_filter('avf_title_args', 'my_title', 10, 2)
    
    function my_title($args, $post_id)
    {
    
    $args['title'] = 'your title';
    
    return $args;
    }
    

    Regards,
    Günter

    #354177

    Hi,

    I added that code to themes/enfold/functions.php file but title did not change.. What might be the problem?

    Your other codes worked properly, thanks

    #354199

    Hey!

    There is a ; missing – sorry, my mistake. Replace the code above with:

    
    add_filter('avf_title_args', 'my_title', 10, 2);
    
    function my_title($args, $post_id)
    {
    
    $args['title'] = 'your title';
    
    return $args;
    }
    

    Cheers!
    Günter

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.