Forum Replies Created
-
AuthorPosts
-
Hey A!
Please add following code to Quick CSS
#footer ul.social_bookmarks li { margin-right: 5px; } #footer p.rtw_main { margin-top: 0; }Regards,
YigitHi connect4consulting!
You have following code in Quick CSS
.responsive_large .container .twelve.units { width: 1210px; padding-top: 30px; }please change it to
@media only screen and (min-width: 1340px) { .responsive_large .container .twelve.units { width: 1210px; padding-top: 30px; }}and then add following code to Quick CSS
@media only screen and (max-width: 480px) { div#section-1 h1 { font-size: 20px!important; }}Regards,
YigitAugust 15, 2014 at 3:06 pm in reply to: Logo in header transparency overlapping with main logo when scrolling down #304931Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer ul.social_bookmarks li { clear: none; }Cheers!
YigitAugust 15, 2014 at 2:42 pm in reply to: Mobile Menu: Toggle Submenus and indicate current page #304924Hey!
1- By default it is not possible. But please request such feature here – https://kriesi.at/support/enfold-feature-requests/
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed#mobile-advanced li.current-menu-item { background-color: lightblue; }Cheers!
YigitHi!
Currently it is not possible. But please request such feature here – https://kriesi.at/support/enfold-feature-requests/ :)
Cheers!
YigitHi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia-menu-fx .avia-arrow-wrap { visibility: visible; } .avia-menu-fx { height: 5px; }Best regards,
YigitAugust 15, 2014 at 1:59 pm in reply to: LayerSlider error (ReferenceError:) on fresh install. #304908Hey!
It is definitely a LayerSlider issue. Unfortunately there is not much we can do to help you fix the issue on your local server but it is good to hear that everything is working fine, as expected on your live server.
Regards,
YigitHey!
Please add following code to Quick CSS as well
.header_color .avia-menu-fx { background-color: blue; }Best regards,
YigitHey wacky32!
It seems like you have already figured it out – http://i.imgur.com/yhtihir.png
Let us know if you have any other questions or issues!Cheers!
YigitAugust 15, 2014 at 1:40 pm in reply to: LayerSlider error (ReferenceError:) on fresh install. #304900Hey!
Can you try re-installing WordPress as well?
Are you using WordPress version 3.9.2 and Enfold version 2.9.1?Regards,
YigitAugust 15, 2014 at 1:21 pm in reply to: LayerSlider error (ReferenceError:) on fresh install. #304892Hey!
Can you please try deactivating all active plugins and check if that helps?
Best regards,
YigitAugust 15, 2014 at 1:18 pm in reply to: Logo in header transparency overlapping with main logo when scrolling down #304891Hi!
No i will not. I think you have missed my last post – https://kriesi.at/support/topic/logo-in-header-transparency-overlapping-with-main-logo-when-scrolling-down/#post-304877
Cheers!
YigitHey doze!
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.Cheers!
YigitHey Nancy!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_tooltip(){ ?> <script> jQuery(window).load(function(){ jQuery('ul.avia-slideshow-inner img').removeAttr('title'); }); </script> <?php } add_action('wp_footer', 'add_custom_tooltip');Best regards,
YigitHi Gerry!
You are using very old version of Enfold which is not compatible with WordPress version you are using. Please update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
You should login on ThemeForest with the account you have purchased Enfold and go to Downloads section to download it.
You can take a look at some of the new features highlighted on blog – http://kriesi.at/blog
After updating the theme, you may need to re-configure header options – http://vimeo.com/91837491Regards,
YigitAugust 15, 2014 at 1:08 pm in reply to: LayerSlider error (ReferenceError:) on fresh install. #304879Hi ryangough!
Please try re-updating the theme via FTP – http://vimeo.com/67209750
Best regards,
YigitAugust 15, 2014 at 1:07 pm in reply to: Logo in header transparency overlapping with main logo when scrolling down #304877Hi!
Have you made any changes on JS files on child theme? LayerSlider works fine on parent theme
Best regards,
YigitAugust 15, 2014 at 12:59 pm in reply to: Logo in header transparency overlapping with main logo when scrolling down #304873Hi!
I will look into it and keep you updated :)
Logo is soo small because you have this custom CSS code in Quick CSS field.logo img { padding: 20px 0; }You can use following code to adjust the padding on logo when scrolled down
.header-scrolled .logo img { padding: 10px 0; }Best regards,
YigitHi
You are welcome Tom, always gald to help!
Have a great weekend!Best regards,
YigitHi!
You should add Color Section element to your page under Layout Elements in Advanced Layout Builder and click on it to edit and that is where you should find and enter unique ID
Regards,
YigitAugust 15, 2014 at 12:50 pm in reply to: Logo in header transparency overlapping with main logo when scrolling down #304865Hi!
1- You had missing closing curly bracket in your custom CSS code, i added it and the i posted is working fine now
2- Do you mind if we deactivate plugins for testing purposes?Best regards,
YigitHi pack10natural!
Please try adding following code to functions.php file in Appearance > Editor
add_action('ava_after_main_menu','header_shortcode'); function header_shortcode() { echo do_shortcode("[woocommerce_accepted_payment_methods]"); }Best regards,
YigitHey wacky32!
Fullwidth elements such as Color Section, Fullwidth LayerSlider etc. will always work fullwidth and push the sidebar below them. As a workaround, you can add Widget area element to your page and display your widgets inside instead of a sidebar.
Best regards,
YigitHi rkdiddy!
Please go to Appearance > Editor and open helper-main-menu.php file and find
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);and add your image right below it as following
echo "<div class='header-custom-image'><img src='yourimagelinkhere' /></div>";Then you can adjust its position using custom CSS in Quick CSS field in Enfold theme options under General Styling tab
.header-custom-image { position: relative; right: 0; top: 10px; }Best regards,
YigitAugust 15, 2014 at 12:16 pm in reply to: Remove Meta Data from Blog Post Displaying entries from a custom taxonomy #304858Hey!
Your first code should have done it
.post-meta-infos { display: none !important; }Your second code removes meta from content slider element and third code removes date
Regards,
YigitHey Alduhs!
Thank you for choosing Enfold and welcome to our forum :)
Please try installing the theme via FTP. You can find video tutorial “Install Enfold theme with FTP” on Enfold documentation here – http://kriesi.at/documentation/enfold/videos/Cheers!
Yigit -
AuthorPosts
