Forum Replies Created

Viewing 30 posts - 25,381 through 25,410 (of 66,206 total)
  • Author
    Posts
  • 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

    in reply to: Plain div below header #1019495

    Hey sjidesign,

    Thank you for using Enfold.

    This css code might help.

    .responsive.html_top_nav_header .av-section-bottom-logo + div {
        border-top-style: solid;
        border-top-width: 30px;
        border-color: #000000;
    }
    

    Best regards,
    Ismael

    in reply to: Search with 2 fields #1019483

    Hey Stefan,

    Thank you for using Enfold.

    That is possible but it will require modifications that are beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable. They will gladly assist you.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hey Johann,

    Thank you for using Enfold.

    Can we have a copy of the language file? I’ll forward it to the dev team.

    Best regards,
    Ismael

    in reply to: Error api google maps #1019473

    Hey psconciafurno,

    Thank you for using Enfold.

    Where did you add the map? I tried to access the dashboard but the login credentials above were invalid. Please check.

    Best regards,
    Ismael

    in reply to: Email Reply Header #1019472

    Hey Sam,

    Thank you for using Enfold.

    I would like to check the contact form but the login credentials above are invalid. Please provide another login info.

    Best regards,
    Ismael

    in reply to: Tab section title problem #1019471

    Hey vincentsalin,

    Thank you for using Enfold.

    I don’t see the issue on my end. Is this fixed? If it’s not, please provide a screenshot using imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Problem with gaps in thumbnail columns in a gallery #1019468

    Hey web_star157_,

    Thank you for using Enfold.

    Try to re-upload the following image. Make sure that it has the same size as the rest of the gallery items.

    Best regards,
    Ismael

    in reply to: Page footer and sidebar problem #1019465

    Hey Tom,

    Thank you for using Enfold.

    Move all the elements of the footer page inside a color section to make it span or full width.

    Best regards,
    Ismael

Viewing 30 posts - 25,381 through 25,410 (of 66,206 total)