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

    Hi guys,

    I love your theme, already used for 4 clients! Here I have a new request about the baseline logo.

    When i add a baseline in BO > Appearance > customized it doesn’t show/display it.

    What’s wrong with me?

    Thanks in advance,

    #329103
    This reply has been marked as private.
    #329654

    Hey!

    Just tried logging in with the credentials you forward.

    Unfortunately, I do not have sufficient priviledge to help investigate the issue.

    Please forward us administrative credentials instead.

    Cheers!
    Arvish

    #329656

    Hi!

    when I try to login, I get this message:

    “You are temporarily locked out

    You have been temporarily locked out of this system. This means that you will not be able to sign-in or use several other features that may compromise security. Please try back in a short while.”

    Please share a correct admin login as a private post.

    Cheers!
    Andy

    #329683
    This reply has been marked as private.
    #329693
    This reply has been marked as private.
    #330047

    Hey!

    Thank you for the info. Please give us admin rights. What do you mean by BO > Appearance > customized ? You can only modify the logo on Enfold > Theme Options > Header > Header Layout panel.

    In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Cheers!
    Ismael

    #330147

    Hi Ismael,

    Now you have an admin access to my BO (=Back-office).

    Wordpress propose by default a slogan/baseline for the logo on the website.

    There are two ways to set it up:
    Appearance (apparence)> Customize (personnaliser) >Tagline (baseline/slogan) or from Settings > General Settings > Tagline.
    Please have a look on both screenshots.

    So I’ve added a tagline that is not displayed anywhere on the website. It should be just under the logo.

    I know i can just add a logo image included the tagline, but the client wants a text tagline and not an image (seo) as it should be possible in wordpress.

    I’ve screen shots but don’t know how to send it to you?

    Do you see what I mean?
    I want the tagline “Location de voiture à l’Île Maurice” under the logo.

    Thanks for your help,

    Cédric

    #330211
    This reply has been marked as private.
    #330573

    Hey!

    You can upload screenshots on imgur.com or Dropbox public folder and post the links here

    Cheers!
    Yigit

    #330617

    Hi Guys,

    here are the screenshots: http://we.tl/xEqb4B2XTb

    But anyway you can see on my website (see admin ID/psw in previous message) that there is no tagline displayed below the logo even if it’s been set it up.

    Thanks for your help,

    Cédric

    #331343

    Hi!

    Thank you for the info.

    I’m sorry but you can’t use the Appearance > Customize panel to add any options on the theme when you’re using Enfold. All available options are within the Enfold > Theme Options panel. If you want to show a sub text on the logo, use this on functions.php:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    
    function kriesi_logo_addition($sub) {
    	$sub .= "<strong class='logo-title'>Company Name</strong>";
    	$sub .= "<strong class='logo-title logo-subtitle'>Additional Text Here</strong>";
    	return $sub;
    }

    Adjust the subtext position with this:

    .logo, .logo a {
    overflow: visible;
    width: 100%;
    }
    
    span.subtext {
    position: absolute;
    top: 0;
    left: 200px;
    }

    Cheers!
    Ismael

    #332742

    Hi Guys,

    Thanks for the help.

    I just changed the css cause the logo (and sub-text) were stuck on the left and behind the main menu ;o)
    I also change the color.

    .header_color strong {
    color: #634E42;
    font-size: 1.003em;
    }
    span.subtext {
    position: absolute;
    top: 1.125em;
    left: 40px;
    }

    Sorry but now i’m wonderring how I can translate the tagline(sub-text) cause the website is english/french?
    i’m using polylang as a multilanguage plugin.

    Thanks Guys, you rock !!

    #333299

    Hi!

    You can use conditional tags for WPML like following

    if(ICL_LANGUAGE_CODE == 'code'){
    
    }
    else {
    
    }

    but unfortunately i personally do not have any experience with polylang. Please try contacting plugin authors they could help :)

    Regards,
    Yigit

    #337063

    Hi guys,

    I’ve found the fix with the help of polylang. The team is also very good and very reactive.
    For the one who got the same problem as me, here is the fix to get the tagline below the logo and with a translation with polylang plugin:

    add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);function kriesi_logo_addition($sub) { switch( pll_current_language() ) :
    case ‘en’:
    $sub .= ‘<strong class=”logo-title”>headline english‘;
    break;
    case ‘fr’:
    $sub .= ‘<strong class=”logo-title”>headline french‘;
    break;
    default:
    $sub .= ‘<strong class=”logo-title”>headline in default language‘;

    endswitch;
    return $sub;}

    Thanks guys!

    #337395

    Hi!

    You are welcome and thank you for sharing your solution :) Have a great weekend!

    Cheers!
    Yigit

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