Forum Replies Created

Viewing 30 posts - 26,701 through 26,730 (of 67,534 total)
  • Author
    Posts
  • Hi,

    Thanks for the update.

    Use this css code to make the sub menu transparent.

    .header_color .main_menu ul ul {
        background-color: transparent;
    }

    Best regards,
    Ismael

    in reply to: image positioning #1019768

    Hi,

    You need to add the device image as a separate image or put it in a text block. Add a custom css class attribute to that element and set its position to absolute. You can then adjust its position anywhere inside the section.

    Best regards,
    Ismael

    in reply to: Mail Autoresponder with Mail Validation not Working #1019761

    Hey druckhoher,

    Thank you for using Enfold.

    Can we take a look at the contact form? Which email address are you using to test the form?

    Best regards,
    Ismael

    in reply to: drop shadow on gradient text #1019759

    Hey june,

    Thank you for using Enfold.

    I can’t find the “gold-text” element. Where is it? Please provide a screenshot using imgur or dropbox.

    Best regards,
    Ismael

    in reply to: need to remove color section but some matter came up. #1019755

    Hi,

    Have you tried adding a custom css class attribute to those columns? Please review the doc that I provided above.

    Best regards,
    Ismael

    in reply to: Tab section title problem #1019753

    Hi,

    Thanks for the update. Are you referring to the tabs element? Try this css code instead.

    #top .tab_titles div {
        font-size: 20px;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update. Please add this code above the previous one.

    @media only screen and (max-width: 1360px) and (min-width: 989px) {
    .av-section-bottom-logo {
        background-size: 100% 100%;
        min-height: 400px;
    }
    }

    Best regards,
    Ismael

    in reply to: Google maps API not working … #1019751

    Hi,

    I don’t see an API key in your Enfold > Google Services panel. Please add it there then I’ll validate it and see what comes up.

    Best regards,
    Ismael

    in reply to: How can I put these boxes onto the front page? #1019750

    Hi,

    1.) Use the grid row element. Add the image as the background of the cells or use the Image element. You can use a text block for the text or add a caption to the Image element.

    2.) You can create a table manually. Use the code block element.

    // https://www.w3schools.com/html/html_tables.asp

    Best regards,
    Ismael

    Hi,

    Include this css code inside the css media query.

    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        color: #000000;
    }
    
    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul .current_page_item a {
        color: #ffa600;
    }

    Best regards,
    Ismael

    in reply to: nl_NL #: includes/helper-privacy.php translations missing #1019748

    Hi,

    Great! Thanks. I have forwarded it to the dev team. It will probably be included in the next update.

    Best regards,
    Ismael

    in reply to: need a different design bbpress #1019745

    Hey!

    I adjusted the code a bit — used a different action hook. Please try it again.

    Best regards,
    Ismael

    Hi,


    @Schmiddy
    : Please create a new thread with the site url and the login credentials. We would like to check it.

    Best regards,
    Ismael

    in reply to: galleries opening duplicate image on top of lightbox #1019741

    Hi,

    Did you install any lightbox or gallery plugin? Please disable the plugin or the lightbox option of the gallery plugin. Fancybox is a lightbox plugin, which is not from the theme.

    Best regards,
    Ismael

    in reply to: website crashes after update to 4.3 #1019739

    Hi,

    Yes, you can edit the wp-config.php file via FTP. Let us know if you find anything.

    Best regards,
    Ismael

    Hi,

    It’s white because the full screen slider is hidden and the next color section has a top margin of 100px. If you remove that css code, the full screen slider will display above the first color section. Or take off this css code to remove the top margin.

    #first_image {
        display: block !important;
        margin-top: 100px !important;
    }

    Best regards,
    Ismael

    in reply to: Breadcrumb help #1019730

    Hi,

    It’s not a theme issue. The base shop page is included on the product and product category pages’ breadcrumbs by default. The filter above will remove it.

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) 
    {
    	if(is_tax('product_cat') || is_singular('product')) {
               unset($trail[1]);
            }
    	return $trail;
    }

    Use this one if you want to remove the base shop page on the single product pages.

    Best regards,
    Ismael

    in reply to: Print out error google maps #1019726

    Hi,

    I’m not really sure how the plugin creates the pdf page. Please contact the plugin author and ask for additional info.

    Best regards,
    Ismael

    in reply to: Change blog post font size and face #1019725

    Hi,

    Thanks for the update. You can use this css code instead.

    #top .fullsize .template-blog .post-title a {
        font-size: 22px !important;
        font-family: 'Terminal Dosis', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    Best regards,
    Ismael

    Hi,

    It has to be inside a container with the “avia-copyright” class attribute.

    <small class="avs avia-copyright">Something about copyright here or the custom shortcode above.</small>
    

    CSS code.

    .avs.avia-copyright {
        position: absolute;
        background-color: rgba(0,0,0,0.1);
        text-align: right;
        color: #fff;
        padding: 0 2em 0 0;
        right: 0;
        bottom: 0;
        width: 2em;
        line-height: 2em;
        max-height: 2em;
        text-indent: -99999px;
        overflow: hidden;
        transition: all 0.3s ease-in;
        z-index: 308;
        font-size: 0.8em;
    }
    
    .avs.avia-copyright:hover {
        width: 100%;
        padding: 0 3em 0 1em;
        text-indent: 0;
        max-height: 100%;
        background-color: rgba(0,0,0,0.4);
    }
    
    .avs.avia-copyright:after {
        content: "\E81e";
        font-family: "entypo-fontello";
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        text-indent: 0;
        font-size: 0.8em;
        width: 2.6em;
        height: 2.6em;
        line-height: 2.8em;
        text-align: center;
        color: rgba(255,255,255,0.7);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        cursor: pointer;
    }

    Best regards,
    Ismael

    in reply to: serch result site #1019719

    Hi,

    Yes, you need to use the POEdit app in order to do that. Or just replace the current language files with these ones. (see private field)

    Best regards,
    Ismael

    in reply to: Display about button by Mobile? #1019716

    Hi,

    Did you remove the icon? It’s not visible even on desktop view.

    Best regards,
    Ismael

    in reply to: Category and Subcategory in Portfolio masonary #1019715

    Hi,

    Thanks for the update. Use this css code to remove the separators.

    .av-sort-by-term .text-sep {
        display: none;
    }

    And then use this css code to create some space between the sort items.

    .av-sort-by-term a {
        margin: 0 7px 0 7px;
    }

    Best regards,
    Ismael

    in reply to: child-theme solution for change an avia_element ? #1019711

    Hi,

    Try to fetch the database option manually.

    
    global $avia;
    $data = get_option($avia->option_prefix);
    $old = AVIA_BASE_URL."images/layout/logo_modern.png";
    $new = $data['avia']['logo'];
    

    Best regards,
    Ismael

    in reply to: social icons #1019515

    Hey june,

    Thank you for using Enfold.

    You need to modify the footer.php file in order to do that. Look for this code around line 163:

    if(avia_get_option('footer_social', 'disabled') != "disabled")
                                {
                                	$social_args 	= array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    				echo avia_social_media_icons($social_args, false);
                                }
    

    Move it inside the footer container.

    Best regards,
    Ismael

    in reply to: search & replace avia builder pages #1019512

    Hey vegasft,

    Thank you for using Enfold.

    The content is saved on a post meta called “_aviaLayoutBuilderCleanData”. Try to search for that info inside the _postmeta table.

    Best regards,
    Ismael

    in reply to: Color Section Background Images on Mobile #1019507

    Hi,

    How would you like to adjust the background image? Have you tried adjusting the background position settings? You can apply an overlay in the “Section Background Overlay” panel.

    Best regards,
    Ismael

    in reply to: Translate .po and .mo in spanish please #1019504

    Hey melimelow,

    Thank you for using Enfold.

    The es_ES language files are already included in the “lang” folder of the theme. Did you set the Site Language settings in the Settings > General panel to Spanish?

    Best regards,
    Ismael

    in reply to: Make Phone Nos in Icon Box Element Clickable on Mobile #1019501

    Hey Eleina_Shinn,

    Thank you for using Enfold.

    The phone link worked when I tried it. Is this fixed?

    Best regards,
    Ismael

    in reply to: need a different design bbpress #1019499

    Hey debra15,

    Thank you for using Enfold.

    Do you want to remove the theme’s default style for the bbPress plugin? Add this code in the functions.php file.

    function wp_change_bbcss() {
       wp_dequeue_style( 'avia-bbpress' );
       wp_deregister_style( 'avia-bbpress' );
    }
    add_action( 'bbp_enqueue_scripts', 'wp_change_bbcss', 9999 );

    Best regards,
    Ismael

Viewing 30 posts - 26,701 through 26,730 (of 67,534 total)