Forum Replies Created

Viewing 30 posts - 63,571 through 63,600 (of 66,017 total)
  • Author
    Posts
  • in reply to: Shortcode doesn't render in promobox #135695

    Hey,

    Sorry my bad. It is not working when using the Promo Box. Please use the actual html generated by each shortcode. This is the code generated by a button shortcode for example:

    <div class="avia-button-wrap avia-button-center avia-builder-el-1 avia-builder-el-no-sibling "><a href="" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-small avia-position-center "><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>

    Regards,

    Ismael

    in reply to: Shortcode doesn't render in promobox #135694

    Hey,

    Please 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. Shortcodes can be combine then, like this example. A combination of Promobox shortcode plus the Button shortcode:

    [av_promobox button='yes' label='Click me' link='single' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='no' icon='25']
    Welcome Stranger! This is an example Text for your fantastic Promo Box! Feel Free to delete it and replace it with your own fancy Message!
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_promobox]

    Regards,

    Ismael

    in reply to: Fullscreen Slider Tweaks #136468

    Hey,

    You can check it now. You forgot to change the name of the slider “full_slider_1′ to “fullscreen_slider_0”.

    Cheers,

    Ismael

    in reply to: Blog page -> not really nice without sidebar #136584

    Hi,

    Did you change anything on the theme files? I’m not sure why the #footer div is inside the the container. Can you please delete that page then recreate it from scratch?

    Regards,

    Ismael

    in reply to: Mega Menu resizing #132975

    Hey,

    Can you give us a screenshot on what you are trying to accomplish? What do you mean by “when it’s activated”?

    Regards,

    Ismael

    Hi,

    Did you use a Mega Menu for this item? Please check it first, disable the mega menu if you accidentally enabled it on Appearance > Menus > About.

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

    #top #header .mega_menu_title a {
    font-size: 11px;
    line-height: 11px;
    color: #808080;
    }

    Regards,

    Ismael

    in reply to: Video porfolios stopped working #136628

    Hey,

    Please upgrade to WordPress 3.6 and update the theme to Enfold 2.0.1. I hope that will fix the issues.

    Regards,

    Ismael

    in reply to: Pictures in table #136307

    Hey,

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

    .main_color .avia-data-table .avia-highlight-col {
    vertical-align: middle;
    }

    Regards,

    Ismael

    in reply to: search bar RTL #136177

    Hey,

    You can use this:

    #top .header_color #s[placeholder] {
    text-align: right;
    clear: left;
    }

    Regards,

    Ismael

    in reply to: Enfold: Page Title Changes Do Not Flow to Menu #136866

    Hey,

    I’m sorry but I don’t understand the question clearly. What did you change and how did you change it?

    Regards,

    Ismael

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

    Hi,

    1.) You can change the color of the text black font using this:

    .avia_textblock p {
    color: blue;
    }

    or this:

    .main_color p {
    color: red;
    }

    2.) Use this to show the bullets on list elements:

    .avia-icon-list li {
    margin: 0;
    padding: 0 0 30px 0;
    list-style-type: circle !important;
    list-style-position: outside;
    clear: both;
    overflow: visible;
    position: relative;
    min-height: 60px;
    }

    Regards,

    Ismael

    in reply to: Default Layout option? #136845

    Hey,

    You can hide the sidebar on the Events page then increase the width of the content if you want using CSS. Please give us a link to the page.

    Regards,

    Ismael

    in reply to: Enfold/Layer Slider: Background Opacity in Text Layer #135918

    Hey,

    Sorry but I’m not sure what you mean on your last post. You can remove the Media Queries for the logo element. Edit css > layout.css > #Media Queries. Look for css codes regarding the logo. You can modify them.

    Regards,

    Ismael

    in reply to: Jquery issue with Enfold LayerSlider on iOS devices #136680

    Hi,

    Once you successfully updated to Enfold 2.0, you can check the regular theme updates on Enfold > Theme Updates panel.

    Regards,

    Ismael

    in reply to: Gallery image loading problem IE10 #134415

    Hey,

    I hope it fixes it. :)

    Regards,

    Ismael

    in reply to: Menu overlap on ipad portrait #135541

    Hey,

    Add the css then change the switchWidth value. Please experiment with it. It may depend on the number of menu items and the width of the screen.

    Regards,

    Ismael

    in reply to: Make Icon list icon clickable #136805

    Hey,

    Edit config-templatebuilder > aviashortcodes > iconlist.php, find this code:

    $output  = "";
    $output .= "<li>";
    $output .= "<div class='iconlist_icon avia-font-".$icon_el['font']."'><span class='iconlist-char'>{$display_char}</span></div>";
    $output .= "<div class='iconlist_content_wrap'>";
    $output .= "<h4 class='iconlist_title'>".$atts['title']."</h4>";
    $output .= "<div class='iconlist_content'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) )."</div>";
    $output .= "</div>";
    $output .= "<div class='iconlist-timeline'></div>";
    $output .= "</li>";

    Replace it with:

    $output  = "";
    $output .= "<li>";
    $output .= "<a href='{$atts['link']}' title=''><div class='iconlist_icon avia-font-".$icon_el['font']."'><span class='iconlist-char'>{$display_char}</span></div></a>";
    $output .= "<div class='iconlist_content_wrap'>";
    $output .= "<h4 class='iconlist_title'>".$atts['title']."</h4>";
    $output .= "<div class='iconlist_content'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) )."</div>";
    $output .= "</div>";
    $output .= "<div class='iconlist-timeline'></div>";
    $output .= "</li>";

    Cheers,

    Ismael

    in reply to: Add custom font #136802

    Hey,

    You can add Google Fonts, just add this on your functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Patrick Hand'] = 'Patrick Hand';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Patrick Hand'] = 'Patrick Hand';
    return $fonts;
    }

    Replace the font name.

    You can also check this plugins:

    http://wordpress.org/plugins/font-uploader/

    http://wordpress.org/plugins/wp-google-fonts/

    Regards,

    Ismael

    in reply to: Buttons in IE8 #132061

    Hi,

    I inspect your website and I can see that the text-shadow property on the specified selectors is applied correctly.

    body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
    text-shadow: none;
    }

    Can you point us to the elements where you want to remove the text shadows? A screenshot will help.

    Regards,

    Ismael

    in reply to: Gravity Forms and Enfold #136746

    Hey,

    Have you tried this plugin?

    http://wordpress.org/plugins/popup-contact-form/

    Regards,

    Ismael

    in reply to: Disabling arrows on full sliders #136714

    Hey,

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

    .avia-slideshow-dots.avia-slideshow-controls {
    display: none;
    }

    .avia-slideshow-arrows.avia-slideshow-controls {
    display: none !important;
    }

    Your website is awesome. :)

    Regards,

    Ismael

    in reply to: Portfolio Images cropping again #136745

    Hey,

    Glad you fixed it. :)

    Regards,

    Ismael

    in reply to: Icons in Enfold #136265

    Hey,

    Yes, sure you can. Please refer to this link if you want to add background to your iconbox and iconlist:

    https://kriesi.at/support/topic/adding-gradient-background-to-icons

    You can also use this if you want to change the color of the icons:

    Icon box:

    .iconbox_icon.heading-color.avia-font-entypo-fontello {
    color: red;
    }

    Icon list:

    .iconlist-char {
    color: pink;
    }

    Regards,

    Ismael

    Hey,

    You can add the code do_shortcode if the plugin has the code for it or you can edit framework > php > class-framework-widget.php. Find this code:

    $output .= "<a href='$link'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".$follower['rss']."<span>".$feed_text."</span></a>"; }

    Below you can a facebook social icon that will link to your facebook page.

    $output .= "<a href='http://www.facebook.com/kriesi'>".apply_filters('avf_social_widget',"", 'facebook')."<span>Like us</span></a>";

    Regards,

    Ismael

    in reply to: Mega Menu Categories are disappearing #136743

    Hey,

    Please asked your host to set these settings on PHP.

    suhosin.post.max_vars = 5000
    suhosin.request.max_vars = 5000

    If you have access to the .htaccess file, add this:

    php_value suhosin.post.max_vars 2048
    php_value suhosin.request.max_vars 2048

    Regards,

    Ismael

    in reply to: Deactivate table functions and borders around images #136300

    Hey,

    The css for the table element is located on css > base.css > #Table. You can edit those or remove them completely if you want your own modifications for the table element. You can also override them using the custom.css or Quick CSS. I notice that you have an inline css code for the table element, it will automatically override the table properties located on base.css.

    Regards,

    Ismael

    in reply to: WooCommerce and Sidebars #136740

    Hi,

    There is no option to select a right sidebar for single product page. You can hide the sidebar entirely using this:

    .single-product .sidebar.sidebar_sidebar_right.three.alpha.units {
    display: none !important;
    }

    Regards,

    Ismael

    in reply to: frontpage sidebar setting ignored after 1.9 update #133426

    Hi,

    Sometimes you need to reset the sidebars or widget areas. Please use this plugin: http://wordpress.org/plugins/widgets-reset/

    Note: This will remove all of your widgets taking it back to factory settings.

    Regards,

    Ismael

    in reply to: Remove the bloc Title + breadcrumb #136725

    Hey,

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

    .stretch_full.container_wrap.title_container {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Woocommerce one of the product image blurry #136757

    Hi,

    I don’t see any featured images on your shop page. Please add them.

    Regards,

    Ismael

Viewing 30 posts - 63,571 through 63,600 (of 66,017 total)