Forum Replies Created
-
AuthorPosts
-
June 24, 2014 at 7:54 am in reply to: Icon box icons not displaying in several browser instances #282846
Hey jcummings68!
Thank you for using the theme!
Please post the website URL so that we can inspect it. Make sure that you’re running the latest version of the theme. If you have time, please do the fix provided on this link: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
Cheers!
IsmaelHey!
Glad you’re liking the theme! Please post the login details here and set it as a private reply. We would to check it. On the page http://www.wsflats.com/floorplans/, I don’t see any drop down menus. Please provide a screenshot if possible.
Regards,
IsmaelHi!
The documentation (http://kriesi.at/documentation/enfold/using-a-child-theme/) needs an update. I’ll ask Devin to update the topic to avoid confusion. Please do as Gunter suggested.
Cheers!
IsmaelHi!
Thank you for visiting the support forum!
I’m sorry but that’s all the available options for the sliders right now. If you want to request for more added features, you can visit the Feature Requests page. Anyway, if you can provide us with a screenshot of what you want to accomplish with the slider captions, we might be able to help.
Cheers!
IsmaelJune 24, 2014 at 7:39 am in reply to: Need help with Image Scaling using the Image Media Element #282839Hi dsmcpherson!
Thank you for using the theme!
Once you place the image inside a column, it will inherit the size of the container or the column size. Before you insert an image using the Image element, make sure that you have selected the correct thumbnail size under the ATTACHMENT DISPLAY SETTINGS. Choose the full thumbnail size.
Regards,
IsmaelHey!
Glad it is working now. If you have any questions, let us know. :)
Cheers!
IsmaelHey nobody!
Thank you for using the theme!
Please add this on Quick CSS or custom.css:
.ssba div a { float: left; }Regards,
IsmaelHey!
Thank you for the update.
Please post the login details here and set it as a private reply. We’ll edit the code for you.
Regards,
IsmaelJune 23, 2014 at 10:27 am in reply to: Firefox and IE do not correctly displa sidebar dotted border #282346Hey!
Alright. Please use this instead if you don’t mind moving the content 1px towards the right on mozilla firefox:
.avia-mozilla .container .nine.units { width: 670px; margin-left: 1px; }Best regards,
IsmaelHi nuanda74!
Thank you for using the theme!
Unfortunately, you can’t set a predefined color scheme on different pages but you can modify specific pages using the Enfold > General Styling > Quick CSS field or use the wp-content/themes/enfold/css/custom.css file. Firebug or any other browser code inspector will come in handy when making these changes. Also, try to play around with the advance layout builder and the avia elements especially the color section if you want different color schemes for different pages.
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. :)
Regards,
IsmaelHey!
Thank you for the info.
Look for this line of code:
echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>'; echo $content; echo '</div>';Replace it with:
echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>'; if(!is_archive()){ echo $content; } else { $excerpt = get_the_post_thumbnail( get_the_ID(), "large"); $excerpt .= get_the_excerpt(); $excerpt .= '<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a>'; echo $excerpt; } echo '</div>';Cheers!
IsmaelHi!
Thank you for the update.
We’re still not sure why the video shortcode is not working on your end but there’s a big chance that a third party plugin is causing this. Please deactivate all plugins then test it on another browser. If possible test it on another computer.
Regards,
IsmaelHey tlow87!
Thank you for using the theme!
The color sections should be enclosed inside the main container but some of the color sections starting from caliber_standard section is not inside the main and wrap_all container. There maybe some unclosed tags inside those sections which breaks the layout of the theme. Please check all color sections inside the page including the elements inside them. See if you forgot to close some of the html tags. What’s happening is the wrap_all container ends before the caliber_standard section which hides the header.
Cheers!
IsmaelHey djshortkut!
Thank you for visiting the support forum!
1.) Remove the top border with this:
div#equipment { border: none; }2.) On the Social Icons url, add the mailto function. Something like this:
mailto: (Email address hidden if logged out)Regards,
IsmaelHi!
Thank you for the info.
I’m really sorry but you need to edit the sliders again. There are a lot of code improvements on the latest layer slider patch and some of those might be related to the slider settings causing some of your previous options to be altered.
Best regards,
IsmaelHey!
Glad it is working now. There’s something wrong with your installation, the header is being called twice somehow. The sections should be wrapped inside the main container but they’re not like that on your installation. Please deactivate all plugins then test it again. Is it ok if we deactivate all plugins while working on the site?
Best regards,
IsmaelHey!
Add this on Quick CSS or custom.css:
.logo, .logo a { overflow: visible; }Best regards,
IsmaelHey jazbird!
Thank you for visiting the support forum!
The footer background is there when I checked the website. It is a bit faint but it’s there. This is he applied css snippet for the background color:
.footer_color { background: #f8f8f8 url(https://64.19.142.11/curvesecurities.com.au/wp-content/uploads/2013/04/footer_bg2.jpg) top center repeat-x fixed; }Best regards,
IsmaelHi!
I’m sorry but we can’t access the wp dashboard. There is a “forbidden” error.
Regards,
IsmaelHey Frederic!
Thank you for using the theme!
Please provide the link to the website and the code inside the child theme’s style.css.
Regards,
IsmaelJune 23, 2014 at 9:08 am in reply to: Enfold Page Template crashing – losing content on page #282313Hi!
You forgot to close the strong tag on the special heading “ACCELERATING THE GROWTH OF HIGH-TECH INDUSTRIES”. The advance layout builder is quite sensitive with unclosed tags.
Regards,
IsmaelHi!
Yes, that’s possible. Replace the code with this:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('portfolio')) { $share = avia_social_share_links(array(), false); $hr = '<div style="height:1px; margin-top:50px;" class="hr"></div>'; $content = $share . $hr . $content; } return $content; }Regards,
IsmaelHey!
Alright. I checked the page again and it’s showing the facebook module now . Adjusting the browser screen to iPad view works fine too.
Cheers!
IsmaelHey!
Glad we are able to help. 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. :)
Regards,
IsmaelHey!
If I am not mistaken, you’re trying to apply the gradient on the active menu item. Is that correct? Please use this:
.main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item { background: -o-linear-gradient(right, #93C144 , white); background: -moz-linear-gradient(right, #93C144 , white); background: linear-gradient(to right, #93C144 , white); }Cheers!
IsmaelJune 23, 2014 at 6:56 am in reply to: code inserted in slider caption field, slide order changing #282276Hi!
Go to the Quick CSS field then look for this code:
@media only screen and (max-width: 768px) { .responsive .mobile_slide_out .logo a img { left: 50%; -webkit-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); transform: translate(-50%, 0); float: none; } }Increase the left property if you want to move it slightly to the left.
Cheers!
IsmaelJune 23, 2014 at 6:31 am in reply to: Firefox and IE do not correctly displa sidebar dotted border #282274Hi mareva!
Thank you for using the theme!
You can add this on Quick CSS to get rid of the overlapping dotted borders:
#top #main .sidebar { border-left: none; }Regards,
IsmaelHi!
I’m sorry but I think the functions.php on your child theme folder hasn’t been replaced yet. Please follow the instruction here: https://kriesi.at/support/topic/homepage-layout-problem-occured/
If you’re not sure what to do, please post the ftp login credentials here. We’ll upload the functions.php on your child theme folder.
Regards,
Ismael -
AuthorPosts
