Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #622416

    I want to put some customised text similar to your current logo at the top of the support page marked as below. the text needs to be something very different from those in the setting tab in wp

    <span class=”subtext”>
    <strong class=”logo-title”>Kriesi.at
    <strong class=”logo-title logo-subtitle”>Premium Themes
    </span>

    I cant see where to add this I am using a child theme can you help please

    #622420

    Hey condonpb!

    Please refer to this post – http://kriesi.at/documentation/enfold/add-subtext-to-logo-replace-logo-with-site-title/

    Cheers!
    Yigit

    #623537

    Yigit,

    Thanks for this have added to functions .php file but does not show up ??

    Can you advise

    many thnaks

    pete

    #623812

    Hi!

    Can you please post the link to your website? You may need to make some CSS adjustments.

    Best regards,
    Yigit

    #623949

    Yigit,

    Sorry here you are
    http://vpsolutions.wpengine.com/ (hosted on WPengine)

    #624590

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .logo img {
        float: left;
    }
    .logo a {
        min-width: 500px;
    }

    Cheers!
    Yigit

    #624650

    Yigit,

    Thanks I have used in functions.php file:

    add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
    function kriesi_logo_addition($sub) {
    $sub .= “VP Solutions Ltd”;
    return $sub;
    }

    If I want to add another comment below the title of the Company name such as “Taking vending to the next level” similar to the of you logo how can i achieve this ?

    #626120

    Hi,

    Add or combine it to the sub variable:

    $sub .= "Taking vending to the next level";
    }

    HTML codes are allowed.

    Best regards,
    Ismael

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