Forum Replies Created
-
AuthorPosts
-
Hey cipriana,
1.) You almost got it! It should be a colon instead of an equal sign. Here’s the correct code:
.avia-button { text-decoration: none!important; }
2.) Yes, you can create a CSS class for the Builder elements. But you have to turn the feature on first using the instructions here: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
After that, you can use something like this in Quick CSS:
.yellow-iconbox { background:yellow; }
Or if you want to make it really specific for this page, you can use this:
.page-id-649 .yellow-iconbox { background:yellow; }
I hope that helps!
Best regards,
SarahHey Dave,
The tag is now
article
instead ofdiv
. Aside from that, it’s essentially the same. :)Please look for this instead in line 378:
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
And replace it with this:
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $taxs = array(); $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag', 'post_format'), get_post_type($the_id), $the_id); if (!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if (!in_array($taxonomy, $excluded_taxonomies)) { $taxs[] = wp_get_post_terms($the_id, $taxonomy); } } } foreach($taxs as $tax) { foreach($tax as $term) { $post_class .= ' '.$term -> slug. ' '; } } $output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
I hope that helps!
Best regards,
SarahHi,
Sorry, I’m not sure I can see the widgets you’re talking about. Can you show us a screenshot of what it’s supposed to look like, and what it looks like when my suggested code is there? Thank you!
Best regards,
SarahMay 22, 2017 at 2:54 pm in reply to: Additional social icons to both Social Media Profile widget and theme option #797664You’re welcome! We’re glad to help.
Please take a moment to review our theme if you haven’t already. https://themeforest.net/downloads We’d appreciate it!
If you have any other questions or issues, feel free to post them here on the forum and we will gladly try to help you.
Also, for your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/Thank you for using Enfold!
Sarah
Hi,
You will be able to mimic the positioning by doing the following steps:
1. Please use this as your tab title instead:<a href="YOUR LINK HERE" download="" class="av-section-tab-title av-tab-no-icon av-tab-no-image download-link">Download</a>
This will make the download link take some of the other tabs’ styles. The last one is a new one that will use in step 2.
2. Please add this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#av-tab-section-1 .download-link { margin: 7px 0 6px 0; vertical-align:top; line-height:2.5em; }
You might also want to hide the empty tab title. To do this, please add this in Quick CSS as well:
#av-tab-section-1 a[data-av-tab-section-title="7"] {display:none !important;}
I hope that helps!
Best regards,
Sarah-
This reply was modified 7 years, 11 months ago by
Sarah. Reason: removed link
Hi,
1. You can specify CSS for the second grid that contains content. Please try this code when you have already put a table:
.avia-builder-el-15 .avia-data-table-wrap {border: 1px solid #ed3c98;}
2. You can set the mobile behavior for grids. You can choose between Default: Each cell is displayed on its own, or Cells appear beside each other, just like on big screens.
If you choose the default, the elements stack on top of each other, and because your second row has the text before the image, that’s how it will show in mobile as well. What you can do is create an extra grid row that has the image before the text, and will only be visible on mobile. Give it a Section ID like mobile-only, and give your original second a Section ID like desktop-only. Then use this code in Quick CSS:
@media only screen and (max-width: 768px) { .desktop-only {display: none !important } } @media only screen and (min-width: 768px) { .mobile-only {display: none !important } }
This way, your desktop-only grid row is hidden for screens smaller than 768px, and your mobile-only grid row is hidden for bigger screens.
I hope that helps!
Best regards,
SarahHi,
We’re glad that Nikko was able to help you! If you have any other questions or issues, feel free to post them here on the forum.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
We’d also appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads
Thank you for using Enfold!
Cheers!
SarahMay 22, 2017 at 1:26 pm in reply to: How can I change the text, that will be shown in the tab? #797627Oh, I see! Okay. Please go to Settings > General and change “Site Title” as needed. This is the WordPress Settings Tab, not under Enfold.
Alternatively, you can try using Yoast SEO or something similar to customize it.
Please let us know if you need further assistance.
Best regards,
SarahMay 22, 2017 at 1:20 pm in reply to: Additional social icons to both Social Media Profile widget and theme option #797620Hi! I’ve checked your icon, and your code should be like this instead:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' => 'fontello', 'icon' => 'uf27c'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
I updated your functions.php file. If you check your website now, the icon is visible properly. :)
Best regards,
SarahHey adferger1,
Thank you for the feedback! It would be best if you can submit this in our feature request system where we keep track of requests to consider for future releases, and users can vote, as well. https://kriesi.at/support/enfold-feature-requests/
Thank you for using Enfold!
Best regards,
SarahMay 22, 2017 at 12:00 pm in reply to: How can I change the text, that will be shown in the tab? #797570Hey soerenemil10,
I’m sorry, I don’t quite understand which tab you mean. Can you let us know which tab you’re talking about so we can help?
Best regards,
SarahHi, Claudia,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 990px) and (min-width: 768px) { .avia-builder-el-2, .avia-builder-el-7 {width:47% !important;} .avia-builder-el-4, .avia-builder-el-5, .avia-builder-el-6 {display: none!important;} }
For your reference, if you would like to use a custom class, please make sure you follow turn it on first, and use the right custom classes in your CSS. :) Here’s how to turn it on: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
Sarah-
This reply was modified 7 years, 10 months ago by
Sarah.
May 22, 2017 at 11:16 am in reply to: Additional social icons to both Social Media Profile widget and theme option #797546Hey ersink,
I tried logging in, and it seems like our account isn’t active. :)
ACCOUNT PENDING: Your account is currently not active. An administrator needs to activate your account before you can login.
But anyway, I noticed that your code currently uses single left (‘) and right(’) quotes. Please make sure you use directionless single quotes (‘). Please try this code instead:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' =>'houzz', 'icon' => 'ue801'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Please let us know if you need further help.
Best regards,
SarahHi!
Can you please try the solution presented here: https://kriesi.at/support/topic/home-page-blog-move-title-comments-above-image/
Best regards,
SarahHey fitzpatrick512,
That is a lovely header behavior! Thank you for sharing. What you can do with Enfold for now is turn on the Shrinking Header. This can be found in Enfold > Header > Header Behavior.
If you would really like to use pure CSS, please let us know if you find some code, and we’ll try to help you apply it to the theme. Otherwise, you might want to hire a developer to create the code for you, or you can post a request in our Feature Requests system: kriesi.at/support/enfold-feature-requests/
Best regards,
SarahHi Kai!
We’re glad that Nikko was able to help you! If you have any other questions or issues, feel free to post them here on the forum.
Thank you for using Enfold. Please take a moment to review our theme if you haven’t already. https://themeforest.net/downloads Thank you!
Sarah
Hi,
We’re glad that Rikard was able to help you! If you have any other questions or issues, feel free to post them here on the forum.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
We’d really appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads Thank you!
Thank you for using Enfold!
Cheers!
SarahHi,
Ah, I understand now. Sorry, I got confused for a second there. I’ve updated the code in my previous answer. Can you try that one, please?
Best regards,
SarahHi,
That’s strange; our code should not affect any font sizes. Anyway, I was able to apply the code without the font sizes changing. Can you check it? If any of the font sizes changed, please let us know which it is, and please also tell us what the font size of that text should be.
Best regards,
SarahYou’re welcome! We’re glad to help.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
Also, we would appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you.
Thank you for using Enfold!
SarahYou’re welcome! Please let us know if you have any other questions.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
Thank you for using Enfold!
Sarah
Hey tivo_designs,
This is caused by your background image settings in Enfold Child > General Styling. I’ve changed it to the following:
Position of the Image: Center Right
Repeat: Repeat VerticallyPlease let us know if you need further help.
Best regards,
SarahHi,
Please make sure that you define your blog grid layout to include the Read More link. You can choose between the following:
– Title and Exerpt and Read More Link
– Only itle and Read More link
– Only excerpt and Read More linkPlease let us know if you need further help.
Best regards,
SarahHey liseunderwater,
You can do this with a Fullscreen Slider! You can see it in our demo here: http://kriesi.at/themes/enfold-2017/elements/fullscreen-slider/
To turn this on, make sure the “Display a scroll down arrow” option in your Fullscreen Slider is checked.
Best regards,
SarahHey dalen550,
Have none of your other changes taken effect, or is it just that one? Please check if you have a cache plugin in your WordPress plugins or if your server includes it in their services. If you have one, please clear that as well.
If that doesn’t help, please give us temporary admin access so we can take a look.
Best regards,
SarahHi,
Can you please try clearing your WP cache? If your server has a caching mechanism as well, please clear it, too. Thank you!
Best regards,
SarahHi,
I can’t seem to replicate this. May we know what screen you’re using?
Best regards,
SarahMay 19, 2017 at 9:41 am in reply to: Make submenu items appera horizontally instead of vertical #796430Hi,
I see. It is not easily possible to create such menus; it is beyond the scope of these support forums, sorry! You can hire a freelancer, or request that feature here – https://kriesi.at/support/enfold-feature-requests/
I am not really sure if UberMenu plugin offers such feature but you can try using it or any other menu plugin. Before purchasing such plugins, please contact plugin authors to be on the safe side.
Best regards,
SarahHi,
We’re glad that Jordan was able to help you. If we can help you with anything else, feel free to post them here on the forum.
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
Also, we’d appreciate it if you can take a moment to review our theme if you haven’t already. https://themeforest.net/downloads
Thank you for using Enfold!
Sarah
You’re welcome, and thank you for using Enfold!
Do let us know here in the forums if you need help with anything else.
Cheers!
Sarah -
This reply was modified 7 years, 11 months ago by
-
AuthorPosts