Forum Replies Created
-
AuthorPosts
-
Hey!
I’ve tested your page on all latest major browsers(Chrome, IE, Opera, Firefox) and on an Android 4. Everything seems to be functioning fine. Have you tried viewing the site on a diferrent device or screen? It could be your monitor.
Cheers!
ArvishHi Jamie A!
You could increase the size of the logo by playing around with the max-height value:
.responsive .logo img { max-height: 150px !important; }
In terms of image format, I believe your choice of PNG-24 is excellent. You are ensured of both high resolution and transparency.
Best regards,
ArvishHey Jamie A!
Add this to Quick CSS or custom CSS
@media only screen and (max-width:360px) { #header .av_phone_active_right .container{ width: 300px !important; margin-left: 10px; } #header .phone-info { width: 300px; } }
Cheers!
ArvishHi Jamie A!
Add this to Quick CSS or custom.css
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .cart_dropdown{ display: none; } }
Best regards,
ArvishHi DROR!
Add this to Quick CSS or custom.css
#gallery .av-special-heading-tag{ color:#FFF !important; }
Best regards,
ArvishOctober 31, 2014 at 12:54 pm in reply to: Google Maps is gone when image with hotspot is in same page #343968Hi Zijlstra!
Please try the following to see if it helps.
1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.
If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.Regards,
ArvishHi!
Add this to Quick CSS or custom.css
#recent-posts-2 h3.widgettitle{ font-size:30px !important; }
Cheers!
ArvishHey!
Add this to your Quick CSS or custom.css
#commentform label { right: 15px !important; }
Best regards,
ArvishHi generatrorassociates!
Try a third-party plugin like https://wordpress.org/plugins/w3-total-cache/ to minify the scripts and cache your content for faster loading times.
Best regards,
ArvishHi!
Looks great on Windows 7 Ultimate and 8.1 Enterprise (Firefox, Chrome, Opera and IE latest) and Android 4.
Love the wooden feel :)
Cheers!
ArvishHi DianeBenscoter!
Please forward us a link to the page you need to customise.
Regards,
ArvishHi!
Add this to your Quick CSS or custom.css
#av_section_1 .container{ padding-top:0px !important; }
Best regards,
ArvishHey!
Please try the following to see if it helps.
1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.
If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.
Best regards,
ArvishOctober 31, 2014 at 11:18 am in reply to: opacity and color of content sections – special headings and text blocks #343938Hi GGLNetwork!
You can code the CSS in the following way:
After adding a colored section in Avia Layout Builder,
Enter the color you want to use in “Custom Background Color”
In the colored section settings specify an ID for the section:
The ID can be anything (do not use spaces and special chracters. You can use – and _)
In your Quick CSS add code in the following way
#the_ID_you_entered_above{
opacity:0;
}Opacity can be anything from 0 to 1.
I would suggest looking into a few CSS coding tutorials before attempting in-depth modifications.
http://www.w3schools.com/css/default.asp
http://www.w3schools.com/css/css3_intro.aspRegards,
ArvishHi djsmbd!
Thank you for using Enfold.
I have notified my colleagues using IPhones to verify the site on their systems. They will get back to you shortly.
Regards,
ArvishHi!
You can achieve what you are requesting by using conditionals to display different menus or many parts in (theme folder)/includes/helper-main-menu.php
E.g
<?php if ( is_user_logged_in() ) { echo 'Welcome, registered user!'; } else { echo 'Welcome, visitor!'; } ?>
Unfortunately this customisation will take a while to implement and therefore falls outside the scope of our theme support. You can try http://studio.envato.com or http://www.peopleperhour.com for further customization. You can also vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.Best regards,
ArvishOctober 31, 2014 at 10:46 am in reply to: Google Richsnippets (Some schema data is missing in Enfold theme) #343934Hey!
I have drawn Kriesi’s attention this issue and we are working on a fix.
In the meantime, try the following third party plugin to see if it helps resolve the issue: https://wordpress.org/plugins/itempropwp/
Regards,
ArvishHi!
We would be happy to help provided you provide us with the following:
1. FTP details to your site.
2. Hosting Panel credentials to your sitePlease also upload a copy of your themeforest downloaded zip file to the theme folder of your wordpress install.
Cheers!
ArvishHi!
Add the following CSS to your Quick CSS or your custom.css
/* Desktop Styles ================================================== */ /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */ @media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ .avia_mega2{ left: -295px !important; } } /* Mobile Styles ================================================== */ /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */ @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .avia_mega2{ left: 0px !important; } }
If the above doesn’t work, please try disabling all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.Best regards,
ArvishHi Effektid!
Add this code at the bottom of functions.php:
add_action('woocommerce_after_single_product_summary', 'avia_add_social_toolbar', 10, 2); function avia_add_social_toolbar($id = "", $context = "") { avia_social_share_links(); }
And add this to the Quick CSS:
.single-product .av-share-box { margin-bottom: 20px; }
Regards,
ArvishOctober 30, 2014 at 1:58 pm in reply to: How to activate the RTL support and translate the theme/wordpress #343396Hi DROR!
If you want to change the wordpress core language to Hebrew, you can follow this article to change the language
http://www.wikihow.com/Change-the-Default-Language-in-WordpressThe current Hebrew files can be obtained here:
http://i18n.svn.wordpress.org/You can also try using a third-party plugin to handle the language file downloads and administration for you:
https://wordpress.org/plugins/wp-native-dashboard/Cheers!
ArvishHey t3lgroup!
Please try the following to see if it helps.
1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.
If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.Cheers!
ArvishHi k_dev!
Unfortunately, that’s not possible using the built in megamenu.
You can use a third-party plugin like
http://codecanyon.net/item/ubermenu-wordpress-mega-menu-plugin/154703
http://codecanyon.net/item/mega-main-menu-wordpress-menu-plugin/6135125Cheers!
ArvishHey daphneVDKL!
In the Easyslider settings modal, make sure you select the No Scaling option from the Slideshow Image Size dropdown
Cheers!
ArvishHey neutem!
Please forward us administrative and FTP credentials to your site for us to have a closer look. Ideally we will require access to your hosting panel and your site’s database as well.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.
Best regards,
ArvishHey p5uln!
Please refer to the following post for a solution to your question:
https://kriesi.at/support/topic/adding-custom-social-icons/#post-170356Best regards,
ArvishHi danneeroy!
My suggestion would be to specify your sidebar within the product admin page
I do not believe the ‘Search by SKU for Woocommerce” plugin ever worked with Enfold’s search functionality. Was this functional on your site before?
Regards,
ArvishHey yodec!
You can try this third-party plugin:
https://wordpress.org/plugins/testimonials-by-woothemes/You could then modify the (plugins directory)/testimonials-by-woothemes/woothemes-testimonials-template.php file on line 88 to add the quotes in span tags on each side of the blockquote tags.
E.g
<span>"</span>
Style it and it does the trick.
Some ideas of quotes styling: http://css-tricks.com/examples/Blockquotes/
Best regards,
Arvish- This reply was modified 10 years ago by Arvish.
October 30, 2014 at 9:04 am in reply to: Looking to hire someone to help get my Enfold Theme going! #343286Hi browntodde!
You can try http://studio.envato.com, https://www.elto.com/ or http://www.peopleperhour.com for minor customization jobs
For much larger customisations you can fill in a request here:
http://kriesi.at/contact/customizationCheers!
ArvishHi virtualsa!
I just tested your site and everything seems to be in order.
For us to have a better understanding of your requirements, please forward us a mock up or screenshot of the type of modification you wish to achieve.
Additionally please try the following to see if it helps.
1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.
2. Has this started occurring after a theme, plugin or wordpress update? Restoring a backup version of your site might help in such a case.
If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.
Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.
Best regards,
Arvish -
AuthorPosts