Forum Replies Created
-
AuthorPosts
-
June 6, 2014 at 4:28 pm in reply to: Pretty Photo – Can't get noLightbox class to work with another class #275647
Hi Frink!
Thank you for visiting the support forum!
It sounds like you might be having an issue with a third party plugin or script. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author. Also, please update the theme to Enfold 2.8.1.
Thank you for your understanding.
Cheers!
IsmaelJune 6, 2014 at 4:20 pm in reply to: Issues with button visualization on MObile when button is placed on layerslider #275646Hey Gurify!
Thank you for using the theme!
Please try to add this on Quick CSS or custom.css:
@media only screen and (max-width: 767px) { .avia-layerslider .avia-button.avia-size-large { padding: 7px 15px 6px; font-size: 10px; min-width: 50px; } }Cheers!
IsmaelJune 6, 2014 at 4:17 pm in reply to: Transparency menu color in header not working with Header Social icons enabled #275642Hey Heathcliffe!
Thank you for the heads up!
Please try to add this on Quick CSS to change the background of the header meta container to transparent:
.html_header_transparency div#header_meta { box-shadow: none; border: none; background: transparent !important; }Cheers!
IsmaelHey!
Thank you for using the theme!
@Michael: Thank you for trying to help!
@athlonius: I’m sorry but that particular feature is beyond the scope of support. You can try to edit header.php, find this code on line 63:<div id='wrap_all'>Below, add something like this:
<?php echo "<div class='header-top-bg'></div>"; ?>Then go to Enfold > General Styling > Quick CSS, add this:
.header-scrolled { margin-top: -200px; } div.header-top-bg { display: block; background: red; height: 200px; width: 100%; }The negative top margin of the header-scrolled should correspond with the height that you set for the header-top-bg. Use wp conditional to create different background for each page.
Regards,
IsmaelHey!
Thank you for the update.
We can’t reproduce the issue on our end too. I’ll keep the thread open. It is possible that you added an html tag and forget to close it which breaks the color section layout.
Regards,
IsmaelJune 6, 2014 at 4:02 pm in reply to: Image-link does not work when clicking at the first time #275629Hi!
Thank you for the update.
It seems to be computing the top position of the image overlay incorrectly, the first time you hover over it. Please download the latest version Enfold 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelJune 6, 2014 at 3:59 pm in reply to: Background main content image NOT loading in some specific pages #275622Hi Nerohm!
Thank you for using the theme.
Are you trying to add the background on a color section? If possible, please post a screenshot on where you want to display the background. Please try to add this on Quick CSS or custom.css:
.page-id-2874 div#av_section_1, .page-id-2896 div#av_section_1 { background: #ffffff url(https://florestana.com/wp-content/uploads/2013/04/fundo_rodape.jpg) bottom center repeat-x scroll; }Cheers!
IsmaelHi Richard!
Thank you for using the theme.
We’re really not sure why it’s not rendering the sidebar. Please try to deactivate the plugins then test the sidebar again. If possible, please create a test page with the same content as the link you provided.
Cheers!
IsmaelHi canter!
Thank you for using the theme!
Is this still happening? Where is the actual color section on the page that is having this issue? If you don’t mind, please post a screenshot. If possible, please create a test page. We would like to inspect it.
Regards,
IsmaelJune 6, 2014 at 6:28 am in reply to: Adding new Google fonts // including icons in HTML code #275460Hi!
Thank you for using the theme!
Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Playfair Display'] = 'Playfair Display'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Playfair Display'] = 'Playfair Display'; return $fonts; }You’ll see the Playfair Display font at the very bottom of the heading font selection.
Cheers!
IsmaelHi!
Thank you for the access.
I created a test page and added a bunch of text blocks. I even added the media player code that you place on a text block. Updated the page a few times and it’s working. http://mara-events.de/cms/test-page/
Please try to test it on another browser and computer. If I am not mistaken, you’re having problem with the audio player. Please use an audio or playlist plugin instead of copying the whole code on a text block. Remove the inline styling to fix the audio player issue.
Cheers!
IsmaelHey datacom!
Thank you for the info.
Please remove the custom css that you added. Edit the portfolio grid element then look for the Portfolio Grid Image Size, choose the second option to manually select the thumbnail size. Select the “No Scaling” thumbnail size.
Regards,
IsmaelHi egraphique!
Thank you for using the theme!
Please try this on Quick CSS or custom.css.
.survolslide { transition: opacity 0.5s ease; opacity: 0; } .survolslide: hover { opacity: 0.7; }Best regards,
IsmaelHi eyal!
Thank you for visiting the support forum!
You can add html codes on the menu label. Go to Appearance > Menus panel then edit a menu. Look for the Navigation Label, add something like this:
<img src="IMAGE URL HERE">MENU ITEM LABELBest regards,
IsmaelHey Tetratus4!
Thank you for visiting the support forum!
Looks like the first two issues has to do with the theme not being the latest version. If you don’t mind, please post the website url here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 on WordPress 3.9 or higher. Regarding the contact form, yes, that is possible. Please create a page then insert the contact form element under the content element panel. If you want a more extensive forms, you can try the contact form 7 and Gravity Forms plugins.
4.) You can’t switch between the Default Editor and the Advance Layout Builder. If you want to see the actual shortcode below the advance layout builder, edit functions.php and find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }You will be able to see the actual shortcode below the builder. In case you have any 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 find that you still have questions after taking the time on our documentations, 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. :)
Best regards,
IsmaelHey kultblendecom!
First of all, thank you for using the theme!
If you don’t mind, we would like to see an actual page with the image. If I am not mistaken, you want to remove the description below the lightbox image? I’m sorry if that is not the case because I’m only using google translate to read your language. If you want to remove the description, just add this on Quick CSS or custom.css:
p.pp_description { display: none !important; }Regards,
IsmaelJune 6, 2014 at 5:18 am in reply to: Icons replaced with Chinese characters in IE9 on Windows #275446Hey cfrushour!
Thank you for using the theme!
First of all, please make sure that you’re running WP 3.9 plus the latest version of the theme 2.8.1. Post the website url here so that we can inspect it. Please try the fix on .htaccess provided on this link: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
If you’re using CDN, please ask your CDN provider to exclude the fontello fonts suffixes .eot,.woff, .ttf and .svg file type from cache.
Best regards,
IsmaelJune 6, 2014 at 5:15 am in reply to: After Update to 2.8 got Error when trying to edit sites #275445Hey!
Alright. We’ll keep this thread open. Let us know if using the migrate plugin works.
Best regards,
IsmaelHi Eve!
Thank you for using the theme!
Before doing this, please test it on a dummy site. First, edit functions.php, find this code on line 98:
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)Replace it with:
$avia_config['imgSize']['gallery'] = array('width'=>9999, 'height'=>9999, 'crop'=>false ); // images for portfolio entries (2,3 column)This will make sure that the theme will not crop the images and accept all proportions. After that, add this on Quick CSS or custom.css:
#top .portfolio-preview-image .avia-gallery img { float: none; padding: 7px !important; width: auto; display: inline-block; } #top .portfolio-preview-image .avia-gallery .avia-gallery-big-inner { text-align: center; }Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
IsmaelJune 6, 2014 at 5:05 am in reply to: Image-link does not work when clicking at the first time #275443Hey roemer!
Thank you for using the theme.
I checked the website and the sidebar images but they are all linked on http://www.hil-gmbh.at, the homepage, so I’m not really sure if clicking on it the first time is working or not. Do you mind creating a test page with the same sidebar image widgets but different links? What I noticed is that the overlay effect is not working the first time you hover over the images. Just to be sure, please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelJune 6, 2014 at 4:57 am in reply to: Header, Main Nav and added Global Header not Responsive #275442Hi jengraph!
Thank you for visiting the support forum!
The header layout that you’re trying to achieve is a bit complicated and is really not responsive friendly. You might want to consider removing the header background on mobile devices specially on iPhone. The text at the bottom will be stretched beyond recognition when viewing on small screens. Please try to add this on Quick CSS or custom.css to resize the background image on smaller screens:
@media (min-width: 640px) and (max-width: 980px) { body .header_color .header_bg { height: 116px; margin-top: 140px !important; background-size: 100% 100% !important; } } @media (max-width: 639px) { body .header_color .header_bg { height: 80px; margin-top: 128px !important; background-size: 100% 100% !important; } }If you want to remove the header background on smaller screens, please use this:
@media (max-width: 768px) { .header_color .header_bg, .header_color { background: #ffffff; background-color: #ffffff; } }Cheers!
IsmaelHey!
@loyalzoo: Nice app combined with an awesome website. Mind sharing the snippet to pause the video while scrolling? :)Regards,
IsmaelJune 6, 2014 at 4:33 am in reply to: HR element not recognizing spacing / breaking site layout after update. #275435Hi!
Thank you for the update.
I don’t know if this is going to help but the two pages Privacy Matters and Security Matters is not set up with the same layout. The title or text block “Privacy Matters” is inside the a column layout while the title “Security Matters” is not. There is also an inline style on both title but they’re not the same. This is for the Privacy Matters page:
<p style="text-align: left; font-size: 50px; color: #adadad; font-weight: 600;">Privacy Matters</p>This is for the Security Matters page:
<p style="text-align: left; font-size: 50px; color: #adadad; font-weight: 600; line-height: 120%;">Security Matters</p>The difference is the line-height property. My point here is, there’s nothing wrong with the hr element but the way you set up the page.
Regards,
IsmaelJune 6, 2014 at 4:23 am in reply to: Sidebar not changing to custom sidebar / Always showing "Pages" "Categories" etc #275433Hey!
Thank you for the update.
If you’re using a child theme, copy the sidebar.php on the child theme folder then do the modifications there.
Regards,
IsmaelHi!
Thank you for the update.
Yes, I can see it now. I’ve the changed the second slide’s link to http://79.170.44.148/phoenixperformancecentre.co.uk/group-training/. Please check: http://79.170.44.148/phoenixperformancecentre.co.uk
Regards,
IsmaelHey opareklov!
Thank you for using the theme!
First, please set the footer column on Enfold > Footer Layout to 1 or 2. Add this on Quick CSS or custom.css to position the widget menu side by side.
#top .widget_nav_menu li { clear: none !important; display: inline-block; float: none; width: auto; padding: 0 10px; margin: 0; left: 0; }Regards,
IsmaelHi dalboslampen!
Thank you for visiting the support forum!
Please add this on Quick CSS or custom.css if you want to remove the default language flags:
li.language_nb.avia_current_lang, li.language_nb.avia_current_lang + li { display: none; }Best regards,
IsmaelHey!
Thank you for the update. Please refrain from bumping the thread. It will only move the post below the queue.
First, please try my suggestion and remove Yigit’s and Dude’s code. If that doesn’t work, remove my code then add Dude’s. The suggestion should center align the secondary menu then move the phone number below.
Regards,
IsmaelHey!
Thank you for the update.
The code is working on our end. What is the Menu and Logo Position of your current site? I can’t see it because the website is on maintenance mode. If possible, please post a screenshot of what you’re trying to do. Regarding the color section, the element is meant to be always full width. What you can do is to set the page’s layout to No Sidebar then add 3/4 and 1/4 column layout on top of the color section. Add the content on the 3/4 column and the Widget Area element on the 1/4 column to act as sidebar.
Regards,
IsmaelJune 6, 2014 at 3:36 am in reply to: Anchor "Drow Otuside The Lines" and color bar to the header #275420Hey!
Thank you for the update.
I think adding a color section on the header will break the layout of the site. Please try to edit helper-main-menu.php, find this code on line 141:
<!-- end container_wrap-->At the bottom, add this:
<div class="header_bottom">Draw Outside The Lines</div>Edit Quick CSS then add this css code:
div.header_bottom { background: #dc2d68; display: block; width: 100%; height: 30px; z-index: 1000; position: relative; text-align: center; padding-top: 5px; color: white; text-transform: uppercase; font-size: 20px; }Regards,
Ismael -
AuthorPosts
