Forum Replies Created
-
AuthorPosts
-
June 26, 2014 at 1:35 am in reply to: Help to get "Events Calendar" monthly view to be displayed full-width #283851
Hi billlon!
Thank you for visiting the support forum!
Add this on Quick CSS or custom.css:
.tribe-theme-parent-enfold main.template-page.content.nine.alpha.units { width: 100%; }Best regards,
IsmaelHi psipi!
Thank you for using the theme!
A plugin somehow called “loyally” is breaking the mark up of the theme. Please deactivate the plugin along with other plugins then test the mobile menu again.
Cheers!
IsmaelHey djshortkut!
Thank you for visiting the support forum!
Please open one thread per topic. This will keep the threads re-usable if another user is experiencing the same issue.
1.) Add this on Quick CSS or custom.css:
.avia-image-container.avia-align-center .avia-image-container-inner, .avia-image-container.avia-align-center .avia-image-container-inner img { margin: 0 auto; display: inline-block; vertical-align: bottom; width: 100%; }2.) What is the screen resolution of your monitor? Add this on Quick CSS or custom.css:
@media only screen and (min-width: 1800px) .responsive.html_stretched .av-masonry-entry { width: 17.8%; }3.) Add this on functions.php to force the testimonial image to get a larger version of the thumbnail:
add_filter('avf_testimonials_avatar_size', 'avf_adjust_testimonials_avatar_size' ); function avf_adjust_testimonials_avatar_size($avatar_size) { $avatar_size = 'square'; return $avatar_size; }4.) Use this on Quick CSS:
.avia-no-number { opacity: 1; font-size: 0.8em; font-weight: normal; }Cheers!
IsmaelHey _andym!
Thank you for using the theme!
Do you still have the old website? In order to migrate the theme successfully and leave the database intact, please use this plugin: WP MigrateDB or WP MigrateDB PRO
Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684Best regards,
IsmaelHi kroemer08!
Thank you for visiting the support forum!
Did you add any code other than that on functions.php? If not, please get a new copy of functions.php then upload it via FTP.
Best regards,
IsmaelHey cptnem0!
You can add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_theme_support('avia_template_builder_custom_css');Create two sliders, one for desktop and another for mobile. Give them unique css class selectors then create media queries to hide or display them accordingly. Something like this:
@media only screen and (min-width: 990px) { #slider-one { display: block; } #slider-two { display: none; } } @media only screen and (max-width: 989px) { #slider-two { display: block; } #slider-one { display: none; } }This will show slider-one on desktop and slider-two on mobile.
Cheers!
IsmaelHey Jean!
Thank you for the heads up!
I think it should be avia-msie-8?
Best regards,
IsmaelHi gonzobrum!
Thank you for using our theme!
Please add this on Quick CSS or custom.css:
.av-main-nav > li > a { line-height: 20px !important; height: 20px !important; background: blue; margin: 0 5px; top: 30px; position: relative; }Cheers!
IsmaelJune 26, 2014 at 12:14 am in reply to: code inserted in slider caption field, slide order changing #283818Hey!
I was able to reproduce the same issue on my end. Not sure why it’s doing that. I’ll ask Kriesi to take a look. Please wait for his response.
Cheers!
IsmaelJune 25, 2014 at 11:40 pm in reply to: Firefox and IE do not correctly displa sidebar dotted border #283809Hey!
Please check the code. Remove the .containe selector:
.avia-mozilla .nine.units { margin-left: 1px; }or use this:
.avia-mozilla .content { margin-right: -1px; }Cheers!
IsmaelJune 25, 2014 at 12:15 pm in reply to: Firefox and IE do not correctly displa sidebar dotted border #283540Hi!
I’m sorry, I was trying to move the content 1px towards the right using this code. Please don’t add the width property:
.avia-mozilla .nine.units { margin-left: 1px; }This should straighten out the border.
Best regards,
IsmaelJune 25, 2014 at 12:12 pm in reply to: code inserted in slider caption field, slide order changing #283537Hey!
Alright. I was able to reproduce the issue on your installation. Please deactivate all plugins then we’ll test it again.
Cheers!
IsmaelHey!
Google forbid the use of iframe for google maps: http://tech.slashdot.org/story/11/10/23/1949227/google-not-reciprocating-on-iframe-usage
Cheers!
IsmaelHey heelia!
Thank you for choosing Enfold!
Unfortunately, the mega menu toggle is not available without major modification on the theme codes. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
Note that the theme do have a mega menu feature. Please watch this video: http://vimeo.com/channels/aviathemes/67651241
You can also try to integrate the ubermenu plugin but we won’t be able to provide any support for it.
Cheers!
IsmaelHi!
Thank you for the details.
There is a theme named “SmallBiz Dynamic Lite” on Appearance > Themes. Where is this coming from? I checked the themes folder, there’s only enfold, enfold-child and the default wordpress themes but I don’t see this smallbiz theme. Are you sure that this is the correct server?
Regards,
IsmaelHi!
Thank you for the screenshots.
You have a cache plugin installed. Disable it while editing the theme.
Cheers!
IsmaelHi jansthh!
Thank you for visiting the support forum!
1.) You can adjust the size of the logo by decreasing its height:
.html_header_top #top .av_logo_right .logo { height: 80%; top: 20px; }2.) Please edit config-templatebuilder > avia-shortcodes > portfolio.php, remove everything then replace it with this code: http://pastebin.com/3Tjscv7m
Regards,
IsmaelHi!
I’m sorry but we can’t reproduce the issue on our end. I’ll ask the rest of the support team to take a look.
Regards,
IsmaelHey!
Thank you for the info but the login details are incorrect. Please check. If you can paste the code from loop-index.php to pastebin.com, that would be great. I’ll give you a modified version after. Copy the includes folder with the loop-index.php file to your child theme folder if you want to preserve the changes.
Best regards,
IsmaelJune 25, 2014 at 10:48 am in reply to: Change horizontal ruler color and space up and below only in one text block #283491Hey!
Try to add a bottom margin.
.hr.blue-hr { margin-top: 0; height: 1px; margin-bottom: 10px; }Play around with the css values.
Regards,
IsmaelJune 25, 2014 at 10:39 am in reply to: Need help with Image Scaling using the Image Media Element #283488Hey edcable!
Thank you so much for using the theme!
The link leads me to a 404 page. Please check.
Cheers!
IsmaelHey!
Thank you for the info.
I’m sorry but we won’t be able to provide support for third party plugins such NGFB as stated on our support policy. If you insist on using the plugin, please hire a freelance developer to modify the plugin for you. Please visit Envato Studio or Werkpress for further customization.
Thank you for your understanding.
Best regards,
IsmaelHi awilson3rd!
Thank you for using the theme!
If you want a more flexible and extensive contact form module, you can use plugins such as Contact Form 7 and Gravity Forms.
Best regards,
IsmaelHey!
I’ll ask Yigit to check the thread again or you can translate your inquiry to English so that we can understand it. Please wait for Yigit’s response.
Best regards,
IsmaelJune 25, 2014 at 4:56 am in reply to: Questions about full screen slider and and logo header #283401Hi!
Thank you for using the theme!
You should use the layer slider if you want to create animations to cover the slider background but you might lose the full background cover. If you really to use the full screen slider, add html tags on the caption text. Something like this:
<img src="IMAGE URI HERE">Another plugin that you can use is the Revolution Slider. The plugin has a fullscreen background option if I am not mistaken.
Best regards,
IsmaelHi!
Thank you for the update.
The video works fine on Firefox, Chrome Windows 8 and 7. Not sure about XP, Microsoft’s support for the OS has ended on April 8, 2014. You should upgrade to the latest Windows version like 7 or 8.1. Let us know if the video works well on your end.
Best regards,
IsmaelHey!
Thank you for the update.
What do you mean by color separation? Please provide a screenshot of what you’re trying to do. If you want to have more control on where the sidebar should be. Set the page’s layout to No Sidebar then insert 3/4 and 1/4 column layouts respectively. Add the content on the 3/4 column and the Widget Area element or the sidebar on the 1/4 column.
Regards,
IsmaelHey!
Thank you for the info.
Please use this one:
@media only screen and (max-width: 767px) { .header_color .header_bg { background: #ffffff url(https://theboardhound.com/next/wp-content/uploads/2014/06/the-board-hound-shirlington-9-no-shadow-no-dog.png) top right repeat scroll; } }Regards,
IsmaelHey!
Please try this one:
.avia-msie .main_menu ul:first-child > li a { height: 116px !important; line-height: 116px !important; min-height: 116px !important; } .avia-msie .header-scrolled .main_menu ul:first-child > li a { height: 58px !important; line-height: 58px !important; min-height: 58px !important; }Best regards,
Ismael -
AuthorPosts
