Forum Replies Created

Viewing 30 posts - 63,331 through 63,360 (of 66,017 total)
  • Author
    Posts
  • in reply to: logo in footer #138514

    Hey,

    You can add the logo on a Text widget. Just add the html tag:

    <img src="YOUR LOGO IMAGE URL HERE">

    Regards,

    Ismael

    in reply to: Reorder data table rows, add new rows in between rows #138510

    Hey,

    If you have the Advance Layout Editor switch to debug mode, you can reorder the shortcode manually.

    To switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. You can manually re-order the row shortcode.

    [av_table purpose='pricing' caption='']
    [av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
    [/av_table]

    You can place the first row below the second row:

    [av_table purpose='pricing' caption='']
    [av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
    [/av_table]

    Regards,

    Ismael

    in reply to: Space between layout elements / widgets #138505

    Hey,

    Please add this on your custom.css or Quick CSS:

    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Regards,

    Ismael

    in reply to: Enfold Showcase #116516

    Hey,

    Nice websites!

    Thank you for using the Enfold theme. :)

    Cheers,

    Ismael

    in reply to: Unlink the ajax description title #138493

    Hey,

    Glad you figured it out. :)

    Cheers,

    Ismael

    in reply to: Blog Shortcode – Titles only #138454

    Hey,

    You can hide the excerpt via CSS.

    If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .post .entry-content.clearfix p {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Easy Slider Won't Cycle Past Second Image #136907

    Hi,

    You still don’t have the latest version of Enfold. Please download the theme on your themeforest account and update your installation. You also have a lot of plugins installed. Please try to deactivate them. If you have a cache plugin, please flush the permalink settings.

    Regards,

    Ismael

    in reply to: sidebar text alignment #137851

    Hey,

    I think the code above will fix the alignment issue.

    .sidebar_left.sidebar {
    text-align: left;
    }

    I can see that it is properly aligned now: http://web409.mis63.de/?page_id=2664

    Regards,

    Ismael

    in reply to: Blog strong class="main title" change to h1 class #136329

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Please contribute and translate Enfold #114978

    Hey,

    Looks like we got a french translation by manv83.

    fr_FR.zip (33 KB)

    https://mega.co.nz/#!XER20TZR!HpD9LggQY1f28qoqpP7W5FzI2c81Qh-G7aHsp5Nafqc

    Regards,

    Ismael

    in reply to: some questions to adding contents #116121

    Hey,

    It is already possible to add tags to portfolio items. Please update to Enfold 2.0.1.

    Regards,

    Ismael

    in reply to: Tablet CSS & Newsletter Header #137649

    Hey,

    Just add this on your custom.css or Quick CSS:

    .blog .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Logo #138441

    Hey,

    You can edit js > avia.js, find this code:

    // decreases header size when user scrolls down
    avia_header_size();

    Replace it with:

    // decreases header size when user scrolls down
    //avia_header_size();

    This will keep the header from resizing.

    Regards,

    Ismael

    in reply to: Removing avia_combo_widget from search #138424

    Hey,

    You can add this on your custom.css or Quick CSS:

    .search .widget.avia_combo_widget {
    display: none;
    }

    Remove browser cache then reload the page.

    Regards,

    Ismael

    Hey,

    You can visit odesk.com or freelancer.com. You hire a freelance wordpress developer there. :)

    Regards,

    Ismael

    in reply to: Change Header Features #137862

    Hey,

    @bernie:Thanks for the tip. :)

    @morris: Hey, I think I already answered your inquiry. Please don’t post similar thread twice.

    https://kriesi.at/support/topic/change-header-features

    Thanks,

    Ismael

    in reply to: Translation issue #137908

    Hey,

    1.) There are two instances that “You are here” appear on the class-breadcrumb.php. Find them on line 26:

    echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';

    And line 186:

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    2.) Please edit includes > comment.php, find this code:

    comment_form();

    Replace it with:

    $comments_args = array(
    // redefine your own textarea (the comment body)
    'comment_notes_after' => '<p class="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s', 'avia_framework' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>'
    );

    comment_form($comments_args);

    Regards,

    Ismael

    in reply to: Permanent logo shrinked? #137904

    Hi,

    You can decrease the size of the logo using this on your custom.css or Quick CSS:

    .logo, .logo a {
    height: 70%;
    }

    Do you also want to shrink the size of the header or just the logo?

    Regards,

    Ismael

    in reply to: Slide – Ajax Portfolio #137838

    Hi,

    You don’t have the latest version of Enfold. Please download 2.0.1 version on your themeforest account. Watch this video on how to override the theme files via FTP: https://vimeo.com/channels/aviathemes/64927356

    Regards,

    Ismael

    in reply to: Help with Menus please? #137828

    Hey,

    How did you create the menu? You can edit menus on Appearance > Menu panel.

    Regards,

    Ismael

    in reply to: Search button not working in header – Enfold #137551

    Hey,

    Please upgrade to Enfold 2.0.1. I think it will fix the issue. Upgrade WordPress to 3.6. Did you add plugins prior to this issue?

    Regards,

    Ismael

    in reply to: I can't see editable page data of the imported dummy data #137729

    Hey,

    Please deactivate your plugins. See if the issue persist. You can also try to re-create the home page from scratch. This is the whole shortcode:

    [av_layerslider id='1']

    [av_one_third first]
    [av_icon_box icon='17' position='left' title='Checkit!']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    Aenean <strong>commodo ligula</strong> eget dolor. Aenean massa. Cum sociis
    [/av_icon_box]
    [/av_one_third]

    [av_one_third]
    [av_icon_box icon='50' position='left' title='Green Power']
    Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient montes</strong>, nascetur ridiculus mus. Lorem ipsum dolor sit amet
    [/av_icon_box]
    [/av_one_third]

    [av_one_third]
    [av_icon_box icon='125' position='left' title='Recycle that']
    Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque <strong>sadfsadfas</strong>
    [/av_icon_box]
    [/av_one_third]

    [av_section color='alternate_color' custom_bg='' src='' attachment='' position='top left' repeat='repeat' attach='scroll' padding='large' shadow='shadow' id='awesome-section']
    [av_one_full first]

    [av_textblock]
    <h2 style="text-align: center;">Crazy cool usability features</h2>
    [/av_textblock]

    [av_hr class='short' height='70' position='center']

    [av_textblock]
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <strong>Aenean</strong> commodo ligula eget dolor.
    an massa. Cum <strong>sociis natoque</strong> penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    [/av_textblock]

    [av_hr class='invisible' height='70' position='center']

    [av_portfolio columns='3' items='3' contents='title' linking='' sort='no' paginate='no']

    [av_hr class='short' height='70' position='center']

    [av_textblock]
    <p style="text-align: center;"><a title="Portfolio 4 Columns" href="#">View the Full Portfolio here</a></p>

    [/av_textblock]

    [av_hr class='short' height='70' position='center']

    [/av_one_full]
    [/av_section]

    [av_section color='main_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='large' shadow='no-shadow']
    [av_one_half first]

    [av_gallery ids='316,315,314,313' style='big_thumb' preview_size='portfolio' columns='7']

    [/av_one_half][av_one_half]

    [av_textblock]
    <h2>Any Layout imaginable</h2>
    [/av_textblock]

    [av_hr class='short' height='70' position='left']

    [av_textblock]
    Lorem ipsum dolor sit amet, consectetuer <strong>adipiscing elit</strong>. Aenean commodo ligula eget dolor. Aenean massa.
    <ul>
    <li>Nulla consequat massa quis enim.</li>
    <li>Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>
    <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.</li>
    <li>Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>
    <li>Aenean <strong>vulputate</strong> eleifend tellus.</li>
    </ul>
    [/av_textblock]

    [av_hr class='short' height='70' position='left']

    [av_button label='Learn more...' link='manually,http://' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='large' position='left' icon_select='yes' icon='121']

    [/av_one_half]
    [/av_section]

    [av_section color='alternate_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='large' shadow='shadow']
    [av_one_half first]

    [av_textblock]
    <h2 style="text-align: right;">About Us</h2>
    [/av_textblock]

    [av_hr class='short' height='70' position='right']

    [av_textblock]
    <p style="text-align: right;">Lorem ipsum dolor sit amet, consectetuer <strong>adipiscing elit</strong>. Aenean commodo ligula eget dolor. Aenean massa.</p>

    <p style="text-align: right;">Nulla consequat massa quis enim.
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.
    Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.
    Aenean <strong style="text-align: right;">vulputate</strong> eleifend tellus.
    [/av_textblock]

    [av_hr class='short' height='70' position='right']

    [av_button label='Check out our Team' link='manually,#top' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='large' position='right' icon_select='yes' icon='14' custom_class='']

    [/av_one_half][av_one_half]

    [av_iconlist position='left']
    [av_iconlist_item title='Crafted with love' icon='43']
    Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in.
    [/av_iconlist_item]
    [av_iconlist_item title='Melodical by nature' icon='51']
    Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt.
    [/av_iconlist_item]
    [av_iconlist_item title='Lightning Fast' icon='64']
    Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero.
    [/av_iconlist_item]
    [av_iconlist_item title='Freaky Flags' icon='41']
    Nullam quis ante. Etiam sit <strong>amet orci eget</strong> eros faucibus tincidunt. Donec vitae sapien ut libero venenatis faucibus.
    [/av_iconlist_item]
    [/av_iconlist]

    [/av_one_half]
    [/av_section]

    [av_section color='main_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='default' shadow='no-shadow']
    [av_one_half first]

    [av_image src='745' attachment='' align='' animation='right-to-left' link='' target='no' custom_class='']

    [/av_one_half][av_one_half]

    [av_textblock]
    <h2>Mobile Ready</h2>
    [/av_textblock]

    [av_hr class='short' height='70' position='left']

    [av_textblock]
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.

    Nulla consequat massa quis enim.Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.Aenean vulputate eleifend tellus.
    [/av_textblock]

    [av_hr class='short' height='70' position='left']

    [av_button label='Mobile Features' link='manually,http://' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='large' position='left' icon_select='yes' icon='2']

    [/av_one_half]
    [/av_section]

    [av_section color='alternate_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='large' shadow='shadow']
    [av_textblock]
    <h2 style="text-align: center;">What others say about us</h2>
    [/av_textblock]

    [av_hr class='short' height='50' position='center']

    [av_testimonials columns='2']
    [av_testimonial_single src='315' name='The Man' subtitle='CEO' link='http://www.wikipedia.com' linktext='WikiTravel']
    Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_testimonial_single]
    [av_testimonial_single src='315' name='Anna Vandana' subtitle='CEO' link='http://www.wikipedia.com' linktext='Media Wiki']
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_testimonial_single]
    [av_testimonial_single src='315' name='Maxi Milli' subtitle='CEO' link='http://www.wikipedia.com' linktext='Max Mobilcom']
    Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.
    [/av_testimonial_single]
    [av_testimonial_single src='315' name='Dr. Dosist' subtitle='CEO' link='http://www.wikipedia.com' linktext='Doom Inc']
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    [/av_testimonial_single]
    [/av_testimonials]
    [/av_section]

    [av_slideshow_full size='no scaling' stretch='image_no_stretch' animation='slide' autoplay='false' interval='5' src='' position='center center' repeat='stretch' attach='scroll']
    [av_slide_full id='745' title='' caption_pos='caption_right caption_right_framed caption_framed' link='' link_target=''][/av_slide_full]
    [av_slide_full id='745' title='' caption_pos='caption_bottom' link='' link_target=''][/av_slide_full]
    [/av_slideshow_full]

    [av_layerslider id='2']

    Regards,

    Ismael

    in reply to: hide .title_container on front page #137730

    Hi,

    If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .title_container {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Unwanted Space Below Image with Link #137540

    Hey,

    We need the link to the actual website to give you a proper solution. What images are you trying to modify?

    Regards,

    Ismael

    in reply to: Change meta on grid & blog posts #136284

    Hey,

    1.) Please use this instead:

    if($show_meta && !empty($excerpt))
    {
    $output .= "<div class='slide-meta'>";
    if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    {
    $link_add = $commentCount === "0" ? "#respond" : "#comments";
    if($commentCount == "0")
    {
    $text_add = __('Contribute', 'avia_framework' );
    }
    else
    {
    $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    }

    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'> | </div>";
    }
    $output .= "<div class='slide-meta-time'>" .get_the_time(get_option('date_format'), $the_id)."</div>";
    $author_id = $entry->post_author;
    $author_url = get_site_url()."/author/".get_the_author_link();
    $author_name = get_the_author_meta( 'display_name' , $author_id );

    $output .= 'by <a href="'.$author_url.'">'.$author_name.'</a>';
    $output .= "</div>";
    }

    2.) Edit this line of code on loop-index.php:

    comments_popup_link( "0 ".__('Comments','avia_framework'),

    Replace it with:

    comments_popup_link( "".__('Comments','avia_framework'),

    Regards,

    Ismael

    in reply to: center logo on mobile #137699

    Hey,

    Can you give us a screenshot of what you’re try to do?

    Cheers,

    Ismael

    in reply to: Adding buttons to nav bar after search bar #137592

    Hi,

    You can use this plugin: http://wordpress.org/plugins/baw-login-logout-menu/

    Regards,

    Ismael

    in reply to: Javascript Query #137668

    Hey,

    Like Dude said, please try deactivate all plugins or better yet remove all of them on wp-content/plugins folder.

    Regards,

    Ismael

    in reply to: Portfolio #137801

    Hey,

    Please add this on your custom.css or Quick CSS:

    .grid-entry.flex_column.isotope-item.all_sort.no_margin.post-entry.av_one_third {
    min-height: 243px !important;
    height: 243px !important;
    }

    Regards,

    Ismael

    in reply to: Enfold: Font & Bullet Issues in Icon List Text #136863

    Hey,

    Have your tried using another font on Enfold > Styling > Defines the Font for your body text?

    Regards,

    Ismael

Viewing 30 posts - 63,331 through 63,360 (of 66,017 total)