Tagged: logo subtext
-
AuthorPosts
-
January 18, 2021 at 2:27 pm #1273332
Hi! as requested by @Rikard I am opening a new thread regarding adding a sub text under my logo on my website
I added this css to my Enfold child theme:
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub) {
$sub .= ‘<h1>Company Name</h1>’;
return $sub;
}
I am not sure how to continue and add a sub text now though (I am just starting out with CSS).I may be having problem also with the google recaptcha. I was wondering if it is possible for you to check that too
Login credentials shared privately belowThanks for your help
January 19, 2021 at 4:45 pm #1273784Hey Nicole,
Thanks for contacting us!
I logged in and removed the code from Enfold theme options > General Styling > Quick CSS field as that code actually needs to go into Appearance > Editor > functions.php file of your child theme however Editor is missing under Appearance tab.
Could you please post FTP logins here privately as well and let us know what is the subtext you would like to add so we can make the customization for you? :)
Best regards,
YigitJanuary 19, 2021 at 5:18 pm #1273790This reply has been marked as private.January 19, 2021 at 6:04 pm #1273798Hi Nicole,
Thanks! I was able to access to your server however path does not seem to be correct as only file I am seeing is “.ftpquota”. Please provide access to root of your WordPress installation. File we need to modify is located in /wp-content/themes/enfold-child/ folder :)
Best regards,
YigitJanuary 19, 2021 at 6:50 pm #1273808This reply has been marked as private.January 19, 2021 at 8:12 pm #1273824Hi,
I had the same issue with the new credentials so I installed a plugin called “My Custom Functions” instead and inserted the code in Settings > PHP Inserter and then I added following code to on top of Quick CSS field
.logo, .logo a { overflow: visible; } #top .logo .subtext h1 { font-size: 18px !important; } #top .header-scrolled .subtext h1 { opacity: 0 !important; visibility: hidden !important; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out;} #top .subtext h1 { -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; }
Please review your website :)
Best regards,
YigitJanuary 19, 2021 at 8:53 pm #1273832This reply has been marked as private.January 20, 2021 at 10:48 am #1273968 -
AuthorPosts
- You must be logged in to reply to this topic.