Forum Replies Created
-
AuthorPosts
-
Hi!
Can you please disable the minification so i can see the code you are currently using?
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.avia-slideshow li img { border-top: 10px solid red; }Cheers!
JosueHey!
Button Styles only work on the main menu, can you post a screenshot/mockup of what would you want to achieve? perhaps it’s doable with some custom CSS.
Best regards,
JosueHi Bryan!
Refer to this:
https://kriesi.at/support/topic/show-submenu-on-click-instant-hover/#post-291367Best regards,
JosueDecember 21, 2014 at 6:59 am in reply to: Title Text On Contact Form is INSIDE the form itself. #371201Hey!
I see why it’s happening, change the code i added in Quick CSS, from this:
.hidden { position: absolute !important; }To this:
.avia_section.hidden { position: absolute !important; }Best regards,
JosueDecember 21, 2014 at 6:57 am in reply to: How to get site title AND subtitle AND logo in the header? #371200Hi,
Can you post the link to your site please?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.page-thumb { text-align: center; }Cheers!
JosueYes, add
hiddento the color section, not to the code block.Hi!
Do you have a sitemap? if not, use this plugin to create one – https://wordpress.org/plugins/google-sitemap-generator/
Best regards,
JosueHey Alex!
The link you posted in your initial message is returning a 404 error message.
Regards,
JosueHi!
Add this to Quick CSS:
.iconbox_content blockquote { border-right-style: solid; border-right-width: 7px; padding-right: 20px; border-bottom-style: solid; border-bottom-width: 7px; padding-bottom: 20px; border-right-color: blue; border-bottom-color: blue; }Adjust as needed.
Best regards,
JosueHey!
It’s not, but if you are using a child theme you can register your own widget areas in the child functions.php:
function custom_footer_widgets() { register_sidebar(array( 'name' => 'Custom Footer Widget 1', 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => 'Custom Footer Widget 2', 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => 'Custom Footer Widget 3', 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', )); register_sidebar(array( 'name' => 'Custom Footer Widget 4', 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', )); } add_action( 'widgets_init', 'custom_footer_widgets' );Simultaneously you’d need to have a modified version of footer.php in your child theme directory:
https://gist.github.com/josueochoa/2111f9c4b816b8589dd4Adjust the values in case of a different number of footer columns.
Best regards,
JosueHi,
Please note that this is more of a WooCommerce issue rather than a theme one, but we don’t mind taking a look, can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
Full width elements (like grid rows) are incompatible with sidebars, that’s why you are not seeing any sidebar. If you want to stick with grid rows you can use a Widget Area element to re-create a sidebar – http://screencast.com/t/84XtF4eG6me3
Cheers!
JosueWe looking forward to hearing from you :)
Regards,
JosueDecember 21, 2014 at 6:18 am in reply to: Issue with tabs: The font changes for all texts that follow the tabs module #371174Hi Daniel,
What’s the default font you want to have for the tabs?
Regards,
JosueHi!
Try with this code in Quick CSS:
.title_container .main-title:before { content: url(https://avia.wp/enfold/wp-content/themes/enfold/images/layout/logo.png); } .title_container{ border-bottom: 1px solid gray; }Also, you forgot the actual link to the site in your last message.
Cheers!
JosueHi!
The page you linked requires a password, please post it here as a private reply.
Best regards,
JosueHey!
Can you post a link to the page where you have this implemented?
Regards,
JosueHey Matthijs!
That feature is not available at the moment, as a workaround you can manually add a portfolio grid at the bottom of each portfolio item, you can then add this code to hide the current portfolio item from that loop
Also, feel free to request it here as a new feature.
Best regards,
JosueHey!
Check it now, needed to add this to Quick CSS:
.hidden { position: absolute !important; }Best regards,
JosueHi!
Can you post a screenshot of your view? here’s how it looks on my end – http://screencast.com/t/kLvL9lHZg
Regards,
JosueHi!
1. Try with this:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .container { width: 95%; max-width: 95%; } }2. I’m not seeing that.
3. Use this:
.iconbox_top .iconbox_icon { background: red !important; } .iconbox_left_content .iconbox_icon { background: blue !important; }Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueDecember 21, 2014 at 5:48 am in reply to: How to change the standard email adress of the contact formular #371163Hi,
Open /enfold/config-templatebuilder/avia-shortcodes/contact.php and look for this (lines 48-53):
array( "name" => __("Your email address", 'avia_framework' ), "desc" => __("Enter one or more Email addresses (separated by comma) where mails should be delivered to.", 'avia_framework' ) ." (".__("Default:", 'avia_framework' ) ." ". get_option('admin_email').")", "id" => "email", 'container_class' =>"avia-element-fullwidth", "std" => get_option('admin_email'), "type" => "input"),Replace by this:
array( "name" => __("Your email address", 'avia_framework' ), "desc" => __("Enter one or more Email addresses (separated by comma) where mails should be delivered to.", 'avia_framework' ) ." (".__("Default:", 'avia_framework' ) ."_NEW_EMAIL_HERE_)", "id" => "email", 'container_class' =>"avia-element-fullwidth", "std" => '_NEW_EMAIL_HERE_', "type" => "input"),P.S. You can store this modification on a child theme:
http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/Regards,
JosueDecember 21, 2014 at 5:38 am in reply to: Issue with tabs: The font changes for all texts that follow the tabs module #371161Hey!
Please post the login details here, as a private reply.
Cheers!
JosueHi Greg,
Can you post the link to your website please?
Regards,
Josue -
AuthorPosts
