Forum Replies Created
-
AuthorPosts
-
Hey!
Where did you place the font files? Please post the font face code on pastebin.com. We would like to check it.
Best regards,
IsmaelOctober 13, 2014 at 10:24 am in reply to: Auto Scrolling to IFrame Location on Mobile Device #334760Hey!
I checked the site on mobile and desktop but it doesn’t autoscroll on the iframe section. Have you tried linking the iframe to another html site without the added scripts? I’m sorry but we don’t provide support for third party scripts. Maybe there’s a conflict between the theme and the external document which will be difficult to trace. Please hire a freelance developer to investigate the external document closely.
Cheers!
IsmaelOctober 13, 2014 at 10:15 am in reply to: Logo link / Bottom arrow / Nonbreaking spaces / Socket #334758Hey Till!
Thank you for using Enfold.
1.) I’m sorry but we don’t provide support for third party plugin specially those that are not fully compatible with Enfold. Please contact the plugin author
2.) Edit the second color section then set the Section Bottom Border Styling to No border. If that doesn’t work, use this on Quick CSS:
.home #after_section_1 .av-extra-border-element.border-extra-arrow-down { display: none !important; }3.) Center align the copyright text with this:
#socket .copyright { float: none; position: relative; display: block; text-align: center; } #socket .copyright + span { width: 100%; text-align: center; }Regarding the banner, I’m not sure how Polylang works with Enfold. If you’re using WPML, you can edit different languages’ theme options.
Best regards,
IsmaelHi!
Please remove the avia_register_frontend_scripts on the child theme’s functions.php. That should fix the issue. Why did you add that code? Note that prettyPhoto is no longer in use on Enfold 3.0.1. Remove browser and plugin cache then reload the page.
Cheers!
Ismael-
This reply was modified 11 years, 5 months ago by
Ismael.
Hey!
Thank you for the screencast. I’ll ask Kriesi to take a look. I was able to reproduce the issue on my installation. For now, make sure that you click the update button when you insert a link.
Cheers!
Ismael-
This reply was modified 11 years, 5 months ago by
Ismael.
Hi!
You can use imgur, dropbox, clipular to post a screenshot. Make sure that you’re running Enfold 3.0.1 on WordPress 4.0.
Best regards,
IsmaelOctober 13, 2014 at 9:12 am in reply to: Adding content after title + breadcrumbs but before page content #334727Hi momon!
Thank you for using Enfold.
You can use this:
add_filter('avf_title_args', 'avf_title_args_append', 1); function avf_title_args_append($args) { $appendcontent = "<div class='container_wrap append-content'>"; $appendcontent .= "<div class='container'>"; $appendcontent .= "CONTENT HERE>"; $appendcontent .= "</div>"; $appendcontent .= "</div>"; $args['html'] = "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>{$appendcontent}"; return $args; }You can find some of the hooks and snippets on Theme Documentation.
Regards,
IsmaelHi Mehmet Ali!
Thank you for using Enfold.
Edit the actual post then set the post format to “Link”. Add the url of the external site on the text editor.
Best regards,
IsmaelHi!
Glad it is working now.
You can create Portfolio Items for your photos then use the Masonry element or Portfolio Grid element.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!Regards,
IsmaelHi aadler!
Thank you for using Enfold.
Can you please provide a screenshot of what you’re trying to do? You can adjust the size of the iconbox icon with this:
#top .iconbox.av-no-box .iconbox_icon { width: 50px; height: 50px; line-height: 50px; font-size: 20px; }Use css media queries if you only want to apply it on tablet screen size.
Regards,
IsmaelHey!
I’m sorry but this will not be a problem if you update the theme earlier. You’ll have to adjust or re-create the modifications or stay on older version of wp. Please try to create a test site with fresh install of WordPress and Enfold 3.0.1. Let us know if the advance layout builder is not working there.
Best regards,
IsmaelHi siteit!
Thank you for using Enfold.
Make sure that wp-content and folders inside of it have the correct file permission. Anyway, the login credentials are not working. Please check.
Cheers!
IsmaelHi meisterpreiss!
Thank you for using Enfold.
Do you mind if we take a look at the current website? Please post the url here.
Cheers!
IsmaelHey Nethendril!
Thank you for using Enfold.
Did you rescan the language before you translated the strings? Make sure that you’re on Tools > Localization > Themes > Enfold section.
Regards,
IsmaelOctober 13, 2014 at 8:40 am in reply to: How to reduce space between text block and special header? #334702Hi!
Glad you figured it out. If you still have questions, let us know.
Cheers!
IsmaelOctober 13, 2014 at 8:39 am in reply to: Main Contant – Different alternate background color for each page #334701Hey chereo!
Thank you for using Enfold.
Please use the Color Section. Change the Section Colors.
Regards,
IsmaelHi!
I checked the page but I don’t see any breadcrumbs there. Please give us a link to the actual page with the breadcrumbs.
Regards,
IsmaelHey!
Please refer to this link on how to create a full screen slider using Revolution Slider: http://theme-fusion.com/knowledgebase/how-to-make-a-full-screen-revolution-slider/
Cheers!
IsmaelHey Marie!
Thank you for using Enfold.
Please refer to this link on how to properly apply a border gradient: http://css-tricks.com/examples/GradientBorder/
Cheers!
IsmaelOctober 13, 2014 at 8:26 am in reply to: Headeranpassung – keine Transparenz aber 2 verschiedene Logos #334697Hey Dominik!
Thank you for using Enfold.
From what I understand, you want the same logo like the Kriesi site. You can add 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 position of the subtext with this on Quick CSS or custom.css:
.logo, .logo a { overflow: visible; width: 100%; } span.subtext { position: absolute; top: 0; left: 200px; }Use this for the subtext transition:
#top .logo-title { transition: opacity 0.4s ease-out; -moz-transition: opacity 0.4s ease-out; -webkit-transition: opacity 0.4s ease-out; -o-transition: opacity 0.4s ease-out; font-size: 12px; color: #000; position: absolute; left: 7px; top: -7px; opacity: 1; white-space: nowrap; } #top .header-scrolled .logo-title { opacity: 0; filter: alpha(opacity=0); }Cheers!
IsmaelHi davevi!
Thank you for using Enfold.
Yes, you can create portfolio items for each of those links then use the Portfolio Grid element. Enable the Excerpt.
Cheers!
IsmaelOctober 13, 2014 at 8:06 am in reply to: Enfold's "General Styling" overrides Revolution Slider's CSS #334686Hey!
Please use this:
.buttontest { border: 5px solid #EDA933 !important; color: #FF7302 !important; max-width: none !important; line-height: 40px !important; }Regards,
IsmaelOctober 13, 2014 at 8:04 am in reply to: Full width Masonry, change the image title and caption height #334683Hi stephenr_nl!
Thank you for using Enfold.
The title popup is default browser feature. You can replace the image title manually on Media > Library panel. Or you can edit config-templatebuilder > avia-shortcodes > masonry_entries.php. Find this code on line 578:
$items .= "<{$html_tags[0]} class='{$class_string}' {$linktitle} {$markup}>";Replace it with:
$items .= "<{$html_tags[0]} class='{$class_string}' title='{$content}' {$markup}>";Make sure that you keep a change log of this modification or use a child theme.
Cheers!
IsmaelHey hypergolica!
Thank you for using Enfold.
I’m sorry but I don’t see the flicker issue on my end. I’ll ask Yigit to take a look.
Best regards,
IsmaelHey!
Thank you for using Enfold.
You can’t apply a custom css class for the layer slider but you can hide the layer slider with this:
@media only screen and (max-width: 480px) { .home div#layer_slider_1 { display: none !important; }}Best regards,
IsmaelOctober 13, 2014 at 7:40 am in reply to: Enfold Menu is overlapping on iPad and not showing up on iPhone #334676Hey!
@tremblayly: I checked the site and the main menu is there. Please remove browser cache then reload the page.Regards,
IsmaelHi yongyong85!
Thank you for using Enfold.
Did you update WordPress to 4.0? Please download the latest version Enfold 3.0.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/
Cheers!
IsmaelHey!
You can find the file on the wp-content/themes/enfold/js folder. Please edit this file via FTP.
Regards,
IsmaelHey massder!
Thank you for using Enfold.
Do you see any errors on the Layer Slider panel? Make sure that you’re running Enfold 3.0.1 on WordPress 4.0.
Regards,
Ismael -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
