Forum Replies Created

Viewing 30 posts - 23,041 through 23,070 (of 34,659 total)
  • Author
    Posts
  • in reply to: Custom CSS for pricing table #1054480

    Hey kjwaggz,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .pricing-table-wrap:first-child .avia-heading-row,
    #top.home .pricing-table-wrap:first-child .avia-pricing-row,
    #top.home .pricing-table-wrap:first-child .avia-pricing-row span.currency-symbol {
    background-color: rgb(45, 45, 45) !important; 
        border-color: rgb(45, 45, 45) !important; 
        color: rgb(225, 30, 43) !important; 
        opacity: 1 !important; 
    }
    
    #top.home .pricing-table.avia-highlight-col .avia-heading-row,
    #top.home .pricing-table.avia-highlight-col .avia-pricing-row,span.pricing-extra,
    #top.home .pricing-table.avia-highlight-col .avia-pricing-row span.currency-symbol,
    #top.home .pricing-table.avia-highlight-col .avia-pricing-row small {
        background-color: rgb(243, 243, 243) !important; 
        border-color: rgb(243, 243, 243) !important; 
        color: rgb(71, 71, 71) !important; 
        opacity: 1 !important;
    }
    
    #top.home .pricing-table-wrap:nth-child(3) .avia-heading-row,
    #top.home .pricing-table-wrap:nth-child(3) .avia-pricing-row,
    #top.home .pricing-table-wrap:nth-child(3) .avia-pricing-row span.currency-symbol {
        background-color: rgb(45, 45, 45) !important; 
        border-color: rgb(45, 45, 45) !important; 
        color: rgb(0, 158, 240) !important; 
        opacity: 1 !important;
    }

    Best regards,
    Mike

    in reply to: burger menu anchor code #1054436

    Hi,
    Thank you for the login, I took another look and found the for your anchors you were using this format:

    <a name="Wallet"></a>

    please use this format instead:

    <a id="wallet"></a>

    or you can use the “For Developers: Section ID” field in your color sections. I made a couple of examples for you on your page.

    Best regards,
    Mike

    in reply to: Shortcode not updating #1054415

    Hi,
    I found that disabling WP Bakery, Speedboost, and using the Classic Editor resulted in no errors. The classic editor was enabled from the theme setting “Select Your Editor”. I was getting errors with the Block Editor and the Yoast plugin, which has many reports lately 1, 2, 3
    But there is a chance that one or more of your plugins is giving an error with PHP v7.2, so it would be worth a try to use v7.0.
    I recommend disabling your plugins, then reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Page insecure – hidden image served as http #1054404

    Hi,
    Just digging though the source code :)
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Tabs initial open option #1054401

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Tabs initial open option #1054136

    Hi,
    Thanks for sharing your solution, and thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Hide page-as-footer in posts #1054135

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Hide page-as-footer in posts #1054123

    Hi,
    It is using a different template so the logic didn’t work as expected, but this css does work:

    #top.single-tribe_events #waarom,#top.single-tribe_events #contact,#top.single-tribe_events #av_section_3.footer_color {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Change font family only for one specific text blog #1054104

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Tabs initial open option #1054103

    Hi,
    @FaM Sorry, I know you said you liked the “bug” but please consider using a accordion element if you want to toggle content.
    I do not recommend rolling back the bug fix, but this was the code that was added to fix the bug.
    The file is at: /enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.php
    lines 298 – 306:

    	$tab_sc = ShortcodeHelper::shortcode2array( $content, 1 );
    			if( ! is_numeric( $initial ) || ( $initial < 1 ) )
    			{
    				$initial = 1;
    			}
    			if( $initial > count( $tab_sc ) )
    			{
    				$initial = count( $tab_sc );
    			}
    

    be sure to save a copy of the file, should your modifications brake it.

    Best regards,
    Mike

    in reply to: Links Decoration CSS Help Needed #1053976

    Hi,
    That is great news! unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Change font family only for one specific text blog #1053975

    Hi,
    Sorry for the late reply, I investigated this further and I found that Enfold doesn’t load all of the Google fonts automatically, it specify loads the fonts that are assigned in the theme options for performance. So if you have assigned “Yellowtail” to any element in the theme options it will be loaded and available for your custom css, otherwise it is not loaded for your css.
    But any font that you upload in the Custom Font Manager is loaded and available.

    I tested this by trying to assign Yellowtail to a heading with a css rule, but it didn’t show correctly. When I assigned Yellowtail to the menu in the advanced styling it showed correctly for the heading. Then when I deleted the advanced styling option for the menu and uploaded the font in the Custom Font Manager, the css rule for the heading showed correctly.

    So if you want to change a specific element’s font, and it’s not one that you are already using in your theme options, please upload it to the Custom Font Manager and add a css rule.

    I hope this helps.

    Best regards,
    Mike

    in reply to: Tabs initial open option #1053960

    Hi,
    The function to add custom tab and toggle ids is:

    add_theme_support('avia_template_builder_custom_tab_toogle_id');

    you can link to tabs with their hash such as:

    Please read more about tabs here

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1053959

    Hi,
    If I understand correctly, this is the css you want for the “reviewinstagram” section on mobile:

    @media only screen and (max-device-width: 767px) {
    #reviewinstagram .av-parallax-inner {
        background-image: url(https://www.bonjiglass.com/wp-content/uploads/2019/01/congruent_pentagon.png) !important;
        background-position: top center !important;
    }
    }

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1053954

    Hi,
    To reverse the order of the bottle hotspot image for mobile, please try this css:

    @media only screen and (max-width: 767px) { 
      #bottleview.entry-content-wrapper {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #bottleview .flex_cell.avia-builder-el-first {
          order: 2 !important; 
      }
      #bottleview .flex_cell.avia-builder-el-last {
          order: 1 !important; 
      }
      }

    Best regards,
    Mike

    in reply to: Links Decoration CSS Help Needed #1053951

    Hi,
    When I look at your site the images no longer have the bottom border, please try clearing your browser cache.
    As a side note, since you wanted to only have the border on your text links, I would have recommend writing your css like this, with the “p” paragraph in the rule. But there are many ways to do this, and it seems that you have it under control now.

    /*underline links body*/
    .entry-content p a {
    color: #000 !important;
    border-bottom: 5px solid #e06;
    }
    .entry-content p a:hover {
    color: #e06 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    }

    Best regards,
    Mike

    in reply to: Problems after update WordPress 5.0 #1053948

    Hi,
    Thank you for explaining these issues, I found that all of your pages get the 404 in the title, and if you try to edit them from the front end you are redirected to editing the 404 page.
    I believe that when you got the error message there was a big error in the backend, I recommend trying to reinstall the site again from the div site.
    What plugin did you use to correct the url’s?
    I recommend using the duplicator plugin to migrate your site from the dev.

    Best regards,
    Mike

    in reply to: Featured Image Shows on Mobile – Ajax Portfolio #1053945

    Hi,
    I updated them, please check.

    Best regards,
    Mike

    Hi,

    @ChristineGerman
    that’s good news, thanks for sharing your solution.

    Best regards,
    Mike

    in reply to: Shortcode not updating #1053938

    Hi,
    Thanks for the login, I see your Enfold is up to date but your “WP Bakery” plugin is also loading in the ALB builder, I believe that this may be the issue, please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Links Decoration CSS Help Needed #1053682

    Hi,
    To remove the bottom border from the images, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .entry-content a img {
        border-bottom: none !important;
    }

    Best regards,
    Mike

    in reply to: Put custom menu on top #1053677

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Shortcode not updating #1053675

    Hi,
    Ok, once you have published your site with the current Enfold version, please let us know if you are still seeing this so we can assist.

    Best regards,
    Mike

    in reply to: Shortcode not updating #1053649

    Hi,
    Thank you for the video, it makes much more sense now, the two editors are not suppose to show at the same time, this is a error and explains why your page is not updating.
    Please ensure that your using at least Enfold v4.5.2 and your PHP version is at least v5.6,
    If these are true, then perhaps a plugin is causing the error, please try disabling all of them to see if that helps.
    If you are still seeing this, please include a admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Title Attributes in Text editor defaulting #1053637

    Hi,
    Glad to help, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Custom Shortcodes to display user information #1053462

    Hey ACJJ619,
    Any customizations you make should be stored in a child theme functions.php so it won’t be overwritten.
    Without knowing what info you wish to display, I found this plugin that seems to offer a good selection: User Shortcodes
    Another option is writing your own with this article:
    How to Get Logged-in User’s Info in WordPress for Personalized Results
    Here is the WordPress Codex for the function that has been updated with v4.5: Function Reference/wp get current user

    Best regards,
    Mike

    in reply to: Featured Image Shows on Mobile – Ajax Portfolio #1053449

    Hi,
    Thank you, I updated your css. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Shortcode not updating #1053439

    Hi,
    Sorry, I can’t envision how to have the ALB & classic editor open in the same window at the same time, perhaps I could assist better if you make a screencast of what you are doing and the error.

    Best regards,
    Mike

    in reply to: Cannot find way to change logo area background color #1053423

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Mobile Menu Scrolling and Submenu #1053421

    Hi,
    To reduce the vertical space between the footer columns in mobile, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #footer .widget_text {
    margin: 0px !important;
    }
    #footer h3.widgettitle {
    padding-top: 0px !important;
    margin-top: 0px !important;
    }

    Best regards,
    Mike

Viewing 30 posts - 23,041 through 23,070 (of 34,659 total)