Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #434531

    Hello Support,

    Please could you give me the CSS to change the size of the Permanent Link in the top left corner. On this page it is the GASP Theatre Group.

    Also for the blog page and how to change the text on the blog please.

    Thanks in advance.

    #435270

    Hey Wils1234!

    1- Do you mean font size of page title? If so, please add following code to Quick CSS in Enfold theme options under General Styling tab

    .title_container .main-title a { font-size: 20px!important; }

    2- Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
    If that is not what you meant, please elaborate on the changes you would like to make.

    Regards,
    Yigit

    #435305
    This reply has been marked as private.
    #435307

    Hey!

    Please use the code as following to show the title of your page title

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( $args['title'] == 'Blog - Latest News' )
        {
            $args['title'] = get_the_title($id);
        }
    
        return $args;
    }

    Cheers!
    Yigit

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