-
AuthorSearch Results
-
January 2, 2017 at 2:04 pm #728558
In reply to: remove padding/margin
Hey DD!
1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#footer #simple-social-icons-2 { margin-top: 0!important; } #footer #wysiwyg_widgets_widget-2 { margin-bottom: 5px; }2- Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_title_tag','avia_new_title'); function avia_new_title() { $title = get_bloginfo('name'); return $title; }Best regards,
YigitJanuary 2, 2017 at 1:52 pm #728541In reply to: adding flags
Hi lech07,
I have added some class to the menu links and have added this css code on top of Quick CSS:
#avia2-menu { position: relative; top: -3px; } #top .flag-dansk { background: url('https://zorbas.synology.me/wordpress/wp-content/uploads/2016/12/dansk-flag.png') center center no-repeat !important; height: 18px; width: 50px; text-indent: -9999em; } #top .flag-svensk { background: url('https://zorbas.synology.me/wordpress/wp-content/uploads/2016/12/svensk-flag.png') center center no-repeat !important; height: 18px; width: 50px; text-indent: -9999em; } #top .flag-dansk a, #top .flag-svensk a { display: block; }I’m not sure if the links are correct but you can change it in Appearance > Menus. :)
Best regards,
NikkoJanuary 2, 2017 at 1:33 pm #728520In reply to: Header is hiding top of section when using anchor
Hi,
i temporary disabled the custom code (you inserted due to this issue: https://kriesi.at/support/topic/responsive-adjust-to-content-width-in-portfolio-raster-doesnt-work/#post-710086 ) , but the problem still exists.
However, there is some custom Quick CSS stuff (not written by myself). Could you have a look, if there is some possible interference with your theme anchor handling?
best regards,
TomHi,
please always open a new ticket for a new question/issue, otherwise it gets very confusing here.
Refer to: https://kriesi.at/support/topic/masonry_entries-php-issue/#post-296907
Best regards,
AndyJanuary 2, 2017 at 12:45 pm #728485In reply to: Erweiterter Layout Editor läd nicht!
Hi Nikko,
i’m sorry, my last topic was in german, so i tried it again ;o) my problem with the advanced layout builder started with the “SofortÜberweisung Plugin”, a payment method. deactivating this plugin worked fine, to make some changes on seperate sites. but after fully updating the website, i cannot do anything in advanced layout builder, enfold settings etc. please check out the backend. i do not know if you can deactivate the woocommerce plugins without doing something wrong. that’s why i did not try this step till now.
January 2, 2017 at 12:43 pm #728483In reply to: Disabling past dates in datepicker
Hey robertruedam,
We would definitely recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ in order to avoid applying the same changes each time you update the theme.
Please copy unmodified enfold/framework/php/class-form-generator.php file and paste it inside enfold-child folder and find following at the top and remove it (please do not remove PHP opening tag)
if ( ! defined( 'AVIA_FW' ) ) exit( 'No direct script access allowed' );and then add following code to Functions.php file of your child theme
require( 'class-form-generator.php' );Then open class-form-generator.php file in your child theme and find
class avia_form extends aviaFramework\base\object_propertiesand change it to:
class avia_form //extends aviaFramework\base\object_propertiesThen, find the following line:
echo 'jQuery( function(){ jQuery(".avia_datepicker").datepicker({then add the following right below that line
minDate: 0,Best regards,
Yigit-
This reply was modified 2 years, 3 months ago by
Yigit. Reason: Updated the instructions
January 2, 2017 at 12:29 pm #728476In reply to: Advanced LayerSlider on mobile devices
Hi,
Happy New Year and Thanks for contacting us :)
To include another page to the style, you just need to copy the selector put a comma at the end of the old selector, press enter and paste the copied selector and change the 174 with 705, so the current selector looks like this:
#top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide {it would be changed to this:
#top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide, #top.page-id-705 #wrap_all .ls-wp-fullwidth-container .ls-slide {Let us know if this helps :)
Best regards,
NikkoJanuary 2, 2017 at 12:02 pm #728467In reply to: Erweiterter Layout Editor läd nicht!
Hey mbefoto,
I am not sure I understand properly since I just used google translate for this topic, is it if the Remittance Plugin is disabled then Advance Layout Builder works properly? Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoJanuary 2, 2017 at 11:54 am #728465In reply to: Accordion slider is messed up in the mobile view
Hey pimroll,
I have added this css code in Quick CSS:
@media only screen and (max-width:767px) { #top #main .home-accordion .aviaccordion { min-height: 180px; } #top #main .home-accordion .aviaccordion h3 { font-size: 14px !important; word-break: break-word !important; } }Let us know if this helps :)
Best regards,
NikkoJanuary 2, 2017 at 11:10 am #728456In reply to: Advanced LayerSlider on mobile devices
Hi there, Yigit and Nikko,
I have no created another page on my blog, which will feature another text-based Advanced Layerslider. The page id for this page is 705.
How would I need to incorporate this additional page (iD) into your code below, so it will apply to this second page as well?
I will also check on the potential CSS sheet issue and post it via pastebin, but there’s hardly anything in it.
Many thanks for your time and help with this.
Happy New Year!
@media only screen and (max-width:1024px) {
#top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide {
display: flex !important;
align-items: center;
}#top.page-id-174 .avia-layerslider .ls-slide p {
font-size: 62px !important;
height: auto !important;
line-height: 1.2 !important;
padding: 50px 120px !important;
position: static;
width: 100% !important;
}
}@media only screen and (max-width:767px) {
#top.page-id-174 .avia-layerslider .ls-slide p {
font-size: 28px !important;
padding: 0 20px !important;
}
}January 2, 2017 at 11:09 am #728455In reply to: enfold theme
Hey antonio blasa,
Thanks for contacting us. :) It’s a bit hard to say it’s fully compatible with the theme as we haven’t tested it out with the plugins you have listed and since the plugins aren’t free we couldn’t test it out for you. I tried looking in the forum for any topics related to your question but couldn’t find any. Most plugins works properly on Enfold but try to contact yith woocommerce support.
Best regards,
NikkoJanuary 2, 2017 at 10:49 am #728451In reply to: align buttons to the left
Hi,
I have changed this code in Quick CSS:
#header .textwidget .flex_column { width: 83.3%; padding-left: 330px; }to:
#header .textwidget .flex_column { width: 100%; padding-left: 30px; }It should look better now. Let us know if you need anything else related to this topic. :)
Best regards,
NikkoJanuary 2, 2017 at 7:01 am #728436IkarusDev
ParticipantI can’t continue edit my page – content is deleted after saving page. I saw several topics here, but I didn’t see solution.
What I tried:
– Installing clean WP (without plugins) and clean parent Enfold theme;
– Changing server memory limit to 256M and 512M;
– Checking in different browsers, PCs and OSs.I understand, that problem in my generated content (shortcodes), but how can I debug it?
December 29, 2016 at 4:14 am #728399In reply to: Need your help please Menu with bigger logo
Hi,
I added the envelope to be able to add background to the right side therefore i removed it.
Then, Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:.phone-info:before { content: ''; width: 20px; height: 20px; border-radius: 100%; background: #1e2a87!important; display: block; position: absolute; margin-left: -24px; top: -6px; }You may need further adjustments. In case you do, please consider to hire a freelancer :)
Best regards,
YigitDecember 29, 2016 at 1:40 am #728393Hi,
Thank you for patiently waiting. :) I have updated the code I put in functions.php and it’s now working fine, this is the code:
add_action('wp_footer', 'ava_new_custom_script'); function ava_new_custom_script(){ ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('#top').on( 'click', '.quantity .minus, .quantity .plus', function() { jQuery("header").find("span.av-cart-counter").text(customTotalPrice()); }); function customTotalPrice() { var sum = 0; jQuery(".input-text").each(function(){ sum += +jQuery(this).val(); }); return sum; } }); </script> <?php }Let us know if there are still issues you are experiencing. Have a great holiday :)
Best regards,
NikkoDecember 28, 2016 at 7:55 pm #728387In reply to: Need your help please Menu with bigger logo
Yigit,
So this is just about it! I see a envelope on the top right now if you widen the browser (very right of the social icons.). Can we make that envelope go away?
And one more thing that I didn’t convey with my picture as I am not good at gimp program. So you were able to do the rounded corner on the bottom left of the blue. So right above that there is a hard left angle and I would like to see if we can do a concave and not so hard of a angle. So the top would be a reverse of the bottom. So that way the flow of it would be nice and symmetrical of each other. And then the last part would be to have the smaller logo to be a bit bigger so that it can be readable, and then having it a bit bigger that should push the menu text down a bit so that it isn’t butting right up to the bottom of the blue area.That should then do it!
Thank you SO MUCH!
Doug
December 28, 2016 at 5:44 pm #728378In reply to: Support questions from staff cannot be answered
Sweet Jesus, Christmas came late this year. I still suggest that you implement this as a standard or at least as an option that can be checked. Separating the blog posts from the actual pages is a defacto standard for every non-Blogger site.
Thanks for the quick fix, Yigit.
Now I am stretching my luck but I´ll give it a try nonetheless and pester you with the other open ticket. Another team member answered to this request but I am unable to reply:
I already did all this but the forward action “order now” still takes ages to complete and there is no visual hint that the server is processing the request. I would recommend to deactivate the button and have a message like “Processing…” or an ajax loading sign or whatever in order to indicate that something is actually happening.
Enjoy your holiday… as much as you can ;-).
Best,
ElmarDecember 28, 2016 at 3:46 pm #728361In reply to: Banner above header problem on tablets and mobile
Hi,
Thank you for sharing the video. I have tested the below code on my installation and it works fine. It appears there is a glitch in the way the banner is placed at the moment. Please remove the previous code related to adding a top banner and copy the below code to Quick CSS and functions.php.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.banner-top{ min-height:90px; width:100%; background:url('http://www.eiweisspulver-test.com/Bodylab728x90.gif') no-repeat center center ; background-size: contain; }Please try adding this at the very end of your themes / child themes functions.php file:
function bannerTop(){ ?> <script> jQuery(document).ready(function() { jQuery('#header_main').prepend( "<a href='https://www.bodylab24.de/'><div class='banner-top'> </div></a>" ); }); </script> <?php } add_action('wp_footer', 'bannerTop');Best regards,
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
December 28, 2016 at 3:09 pm #728359In reply to: Test-Version Enfold
Hallo Müller,
Thank you for contacting us!
Due to our agreement with Envato/ThemeForest, we are not allowed to sell/distribute themes directly, therefore, unfortunately we are not able to provide you a test version of the theme.
Please go to – http://kriesi.at/documentation/enfold/videos/ and check out “Intro to the Advanced Layout Editor” video to see how Advanced Layout Builder works. Please note that currently there are many more elements in ALB and we are adding new ones with major updates. You can also find some reviews on Youtube :)
Also, please check out Enfold showcase thread here – https://kriesi.at/support/topic/enfold-showcase/page/40/ to see what other users created using Enfold.Let us know if you have any other questions and enjoy your holidays!
Best regards,
YigitP.S.: If you would like to receive replies in German, please let us know so our German speaking moderators can contact you. If you do not mind posting in English, please do so, as we have more English speaking moderators so you would probably receive quicker response :)
December 28, 2016 at 3:20 am #728338In reply to: Place contact form in Accordeon element
Hi,
We adjusted the coed a bit.
// https://kriesi.at/support/topic/contact-form-subject-line-fill-with-text-field/#post-728337
Best regards,
IsmaelDecember 28, 2016 at 2:01 am #728327In reply to: Need your help please Menu with bigger logo
Hey!
Can you please change the code to following one?
#header_meta { margin-top: -25px; } #header_meta .container { position: relative!important; top: 20px!important; } .header_scrolled .social_bookmarks, .header_scrolled .phone-info { background: #1e2a87!important; } .social_bookmarks, .phone-info { padding-right: 20px; padding-left: 20px; }If that does not help, please post FTP logins here privately as well
Regards,
YigitDecember 28, 2016 at 1:35 am #728322Hi,
Can you please flush browser cache and refresh your page a few times. There is no gap on my end at the moment. If you would like to reduce top padding on transparent pages
.html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption { padding-top: 10px; }Best regards,
YigitDecember 28, 2016 at 12:07 am #728315In reply to: Batch new position
Hi,
Please add following code to Functions.php file in Appearance > Editor
function av_move_sale(){ ?> <script> jQuery(window).load(function(){ jQuery("#top .onsale").detach().appendTo('.thumbnail_container') }); </script> <?php } add_action('wp_footer', 'av_move_sale');Best regards,
YigitDecember 27, 2016 at 11:40 pm #728311In reply to: Need your help please Menu with bigger logo
Hi!
Custom CSS code i add to Quick CSS field is not working. Please try adding following code to enfold/css/custom.css file via FTP
#header_meta { margin-top: -25px; } #header_meta .container { position: relative; top: 20px; } .header_scrolled .social_bookmarks, .header_scrolled .phone-info { background: #1e2a87!important; } .social_bookmarks, .phone-info { padding-right: 20px; padding-left: 20px; }and then set header height to 120px in Enfold theme options > Header
For these changes you would not really need a child theme however if you are going to modify theme files, definitely recommended – http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
YigitDecember 27, 2016 at 11:06 pm #728308Topic: Need your help please Menu with bigger logo
in forum Pre Sale QuestionsTheWET1
ParticipantHi there. I have just gotten our new website up using this theme! And its really nice and professional looking! please take a look!
So I have a question for help. I would like to have some customization done for the menu and header menu. I want to do this and also to have our logo bigger. that way you can actually read it. So my idea is to expand the logo across the menu and header part of the menu where the phone numbers and social logos are. So the logo would be bigger and then as you move down then it will shrink to a smaller size and would be across the menu and part of the header menu. And what I envision would be that the top blue line would be a small line above the menu and then as it goes across to the right then it will get bigger to be like it is now. This way the two logos would be bigger when they start out and then when it shrinks down would be the same size as the logo as it starts out on my page currently. I could try to mock up something. But want to make sure this is something that can be done. I think this would really put the finishing touches of professionalism on it! I hope that this comes across correctly!
I have uploaded four pictures to get across what I am looking for help on. you can see them here <link> and look in the Web Site album. You will see the current1 and current2 pictures that are what you would see if going to the site now. What I want to have changed are what I have been able to do via gimp editor of the two views. I am just trying to get a bigger area for my logo so that it is where it can be more readable. I hope that this is something that can be done easily.
Thank you
Doug Holcombe
December 27, 2016 at 10:51 pm #728305In reply to: Tagline to the right of logo area
Hi,
You should add following code to Quick CSS in Enfold theme options under General Styling tab and adjust it as needed
#header .widget { left: 50%; padding-top: 0; position: absolute; top: 0; transform: translate(-50%); z-index: 999; }If that still does not help, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Best regards,
YigitDecember 27, 2016 at 10:46 pm #728303In reply to: link of bottom don't appears
Hi,
I cannot see a button element on your homepage. Which page should we check?
Please refer to this post – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/ and enable debugging mode to see shortcodes in default editor.
I replied you here already – https://kriesi.at/support/topic/text-exit-frome-the-page/. Let us stick to that thread regarding text issue :)
Enjoy your holidays!
Best regards,
YigitDecember 27, 2016 at 8:13 pm #728292In reply to: Increase Size of logo
Hi,
move (top, left) and increase (height) it with this code:
.html_header_top.html_logo_center .logo { top: -10px; left: -4px; height: 77px; }Make sure none of your other code is causing any conflicts.
Best regards,
AndyDecember 27, 2016 at 7:52 pm #728288In reply to: controlling the space between maga menu items
Hi,
you can reduce it using this code inside Quick CSS field:
#top #header .avia_mega_div > .sub-menu > li { padding-right: 0px; }Best regards,
AndyDecember 27, 2016 at 7:44 pm #728285In reply to: Text left of logo in logo Center, Menu Below layout.
Hi,
you can move your header widget using this code inside Quick CSS field:
#black-studio-tinymce-4 { top: 10px !important; left: 10px !important; }Adjust as needed.
Best regards,
Andy -
This reply was modified 2 years, 3 months ago by
-
AuthorSearch Results
-
Search Results
-
I can’t continue edit my page – content is deleted after saving page. I saw several topics here, but I didn’t see solution.
What I tried:
– Installing clean WP (without plugins) and clean parent Enfold theme;
– Changing server memory limit to 256M and 512M;
– Checking in different browsers, PCs and OSs.I understand, that problem in my generated content (shortcodes), but how can I debug it?
Hi there. I have just gotten our new website up using this theme! And its really nice and professional looking! please take a look!
So I have a question for help. I would like to have some customization done for the menu and header menu. I want to do this and also to have our logo bigger. that way you can actually read it. So my idea is to expand the logo across the menu and header part of the menu where the phone numbers and social logos are. So the logo would be bigger and then as you move down then it will shrink to a smaller size and would be across the menu and part of the header menu. And what I envision would be that the top blue line would be a small line above the menu and then as it goes across to the right then it will get bigger to be like it is now. This way the two logos would be bigger when they start out and then when it shrinks down would be the same size as the logo as it starts out on my page currently. I could try to mock up something. But want to make sure this is something that can be done. I think this would really put the finishing touches of professionalism on it! I hope that this comes across correctly!
I have uploaded four pictures to get across what I am looking for help on. you can see them here <link> and look in the Web Site album. You will see the current1 and current2 pictures that are what you would see if going to the site now. What I want to have changed are what I have been able to do via gimp editor of the two views. I am just trying to get a bigger area for my logo so that it is where it can be more readable. I hope that this is something that can be done easily.
Thank you
Doug Holcombe
