-
AuthorPosts
-
October 2, 2014 at 4:49 pm #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,
October 2, 2014 at 5:19 pm #329103This reply has been marked as private.October 3, 2014 at 1:34 pm #329654Hey!
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!
ArvishOctober 3, 2014 at 1:37 pm #329656Hi!
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!
AndyOctober 3, 2014 at 2:18 pm #329683This reply has been marked as private.October 3, 2014 at 2:39 pm #329693This reply has been marked as private.October 4, 2014 at 3:20 am #330047Hey!
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!
IsmaelOctober 4, 2014 at 9:53 am #330147Hi 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
October 4, 2014 at 3:43 pm #330211This reply has been marked as private.October 5, 2014 at 9:37 pm #330573Hey!
You can upload screenshots on imgur.com or Dropbox public folder and post the links here
Cheers!
YigitOctober 5, 2014 at 11:34 pm #330617Hi 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
October 7, 2014 at 4:41 am #331343Hi!
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!
IsmaelOctober 8, 2014 at 10:09 pm #332742Hi 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 !!
October 9, 2014 at 3:58 pm #333299Hi!
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,
YigitOctober 17, 2014 at 12:18 am #337063Hi 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!
October 17, 2014 at 3:50 pm #337395 -
AuthorPosts
- The topic ‘Baseline logo’ is closed to new replies.