Forum Replies Created

Viewing 30 posts - 1,171 through 1,200 (of 1,778 total)
  • Author
    Posts
  • in reply to: Buttons lins not underlined #797710

    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,
    Sarah

    in reply to: Blog Posts #797701

    Hey Dave,

    The tag is now article instead of div. 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,
    Sarah

    in reply to: Hiding and showing sections based on screen width #797681

    Hi,

    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,
    Sarah

    You’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

    in reply to: Download link in "tab section" tab title #797663

    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
    in reply to: Quick Css, background color #797649

    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,
    Sarah

    in reply to: Accordion color #797631

    Hi,

    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!
    Sarah

    Oh, 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,
    Sarah

    Hi! 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,
    Sarah

    in reply to: Feature suggestion #797608

    Hey 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,
    Sarah

    Hey 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,
    Sarah

    in reply to: Fix width for column in Enfold #797567

    Hi, 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.

    Hey 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,
    Sarah

    in reply to: i want the post titles above the feature image #797536

    Hi!

    Can you please try the solution presented here: https://kriesi.at/support/topic/home-page-blog-move-title-comments-above-image/

    Best regards,
    Sarah

    in reply to: Fade out menu on scroll up / fade in on scroll up #797531

    Hey 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,
    Sarah

    in reply to: Punkte im Kontaktformular entfernen #797520

    Hi 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

    in reply to: Sidebar Menu Styling #797494

    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!
    Sarah

    in reply to: Hiding and showing sections based on screen width #797493

    Hi,

    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,
    Sarah

    in reply to: I need some code #797456

    Hi,

    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,
    Sarah

    in reply to: animated down arrow on front page #797398

    You’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!
    Sarah

    in reply to: Blog Single Post Sidebar and Archive Read More Link #797396

    You’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

    in reply to: Getting background to fill entire window #797395

    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 Vertically

    Please let us know if you need further help.

    Best regards,
    Sarah

    in reply to: Blog Single Post Sidebar and Archive Read More Link #797379

    Hi,

    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 link

    Please let us know if you need further help.

    Best regards,
    Sarah

    in reply to: animated down arrow on front page #797370

    Hey 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,
    Sarah

    in reply to: Font colours not changing #796465

    Hey 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,
    Sarah

    in reply to: I need some code #796460

    Hi,

    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,
    Sarah

    in reply to: footer: overlapping menu items #796443

    Hi,

    I can’t seem to replicate this. May we know what screen you’re using?

    Best regards,
    Sarah

    Hi,

    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,
    Sarah

    in reply to: Change excerpt size of blogposts #796400

    Hi,

    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

    in reply to: Navigation Background Color Active #796394

    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

Viewing 30 posts - 1,171 through 1,200 (of 1,778 total)