Forum Replies Created

Viewing 30 posts - 64,291 through 64,320 (of 66,017 total)
  • Author
    Posts
  • in reply to: Images resize when linked #131989

    Hey,

    Glad you figured it out. Although I can’t seem to reproduce the issue on my end.

    Regards,

    Ismael

    in reply to: Color Section Image gets clipped #131767

    Hi,

    You can watch tutorial videos about Enfold here: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: Fonts will not change #132065

    Hi,

    Go to includes > admin > register-admin-options.php, find this code:

    'Yellowtail'=>'Yellowtail',

    Add this code below, to register the Maven Pro font.

    'Maven Pro'=>'Maven Pro',

    You’ll be able to select it on Enfold > Styling > Heading Font.

    Regards,

    Ismael

    in reply to: search.php / search results page sidebar #131652

    Hi,

    Edit search.php, find this code:

    //get the sidebar
    $avia_config['currently_viewing'] = 'page';

    get_sidebar();

    Replace it with:

    //get the sidebar
    $avia_config['currently_viewing'] = 'page';
    echo '<div class="sidebar sidebar_right three alpha units"><div class="inner_sidebar extralight-border">';
    dynamic_sidebar( 'search-sidebar' );
    echo '</div></div>';

    Go to includes > admin > register-widget-area.php, find this code:

    foreach ($sidebars_to_show as $sidebar)
    {
    register_sidebar(array(
    'name' => 'Sidebar Pages',
    'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">',
    'after_widget' => '<span class="seperator extralight-border"></span></div>',
    'before_title' => '<h3 class="widgettitle">',
    'after_title' => '</h3>',
    ));
    }

    Below, add this code:

    foreach ($sidebars_to_show as $sidebar)
    {
    register_sidebar(array(
    'name' => __( 'Search Sidebar' ),
    'id' => 'search-sidebar',
    'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">',
    'after_widget' => '<span class="seperator extralight-border"></span></div>',
    'before_title' => '<h3 class="widgettitle">',
    'after_title' => '</h3>',
    ));
    }

    Go to Appearance > Widget, add a widget on the Search Sidebar widget area.

    Regards,

    Ismael

    in reply to: Problem with Woocommerce pages #131869

    Hi,

    1.) Create a new page, name it “New Shop” for example, set it to No Sidebar. On the Advance Layout Editor > Plugin Additions, insert the Product Grid element.

    2.) Please add this on your custom.css or Quick CSS

    .single-product .sidebar {
    display: none !important;
    }

    Regards,

    Ismael

    in reply to: Buttons in IE8 #132055

    Hi,

    IE8 doesn’t support the property background-color. Please add this on your custom.css or Quick CSS

    .msie8 .main_color .avia-color-theme-color {
    background: #f26422;
    }

    or just use:

    .main_color .avia-color-theme-color {
    background: #f26422;
    }

    Regards,

    Ismael

    in reply to: Add transparent background behind text box #132075

    Hi,

    First, edit functions.php, add this code:

    add_theme_support('avia_template_builder_custom_css');

    This will allow you to add unique css selector for avia elements. Edit the text block within the 1/2 column with a form then add a unique css id, for example “form-textblock’. Use the unique css selector to add a transparent background.

    .form-textblock {
    background: rgba(0,0,0,.5);
    }

    Regards,

    Ismael

    in reply to: Help! #131628

    Hi,

    Please follow this link: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit

    Look for the part where you need to edit the wp-config.php. Add the code:

    define('WP_MEMORY_LIMIT', '256M');

    Regards,

    Ismael

    in reply to: font rendering problem #131882

    Hi,

    The font looks fine to me. Can you give us a screenshot and point us to the areas with shadowed fonts?

    Regards,

    Ismael

    in reply to: Post Slider does not work properly. #131927

    Hi,

    Please edit config-templatebuilder > aviashortcodes > postslider.php, find this code:

    $html .= 	"<a href='#prev' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#next' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Replace it with:

    $html .= 	"<a href='#' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Regards,

    Ismael

    in reply to: Not showing images preview for editing #131924

    Hi,

    It works fine on my end. Can you upload the image again?

    Regards,

    Ismael

    Hey,

    @UpSearchLLC: Thanks for the tip.

    @batsirai: Just download the latest version of the theme then override the old theme files.

    Regards,

    Ismael

    in reply to: Updating and overwriting custom page templates #131956

    Hi,

    You can’t overwrite them, what you can do is to edit them again. Delete the old template and save the new one.

    Regards,

    Ismael

    in reply to: How to create Element Id #131987

    Hi,

    It is not an id, it is a link. Configure the button element > Button Link? > Set manually then add the element that you want to target.

    In this thread https://kriesi.at/support/topic/button-on-click-move-to-part-of-the-page, we targeted the body selector #top so every time you click the button it will scroll to top.

    Regards,

    Ismael

    in reply to: Changing the Logo Size in Enfold #131788

    Hi,

    Did you adjust the height?

    Please give us a link to your website. Also, remove browser cache then reload the page.

    Regards,

    Ismael

    in reply to: Fixed Cart #130656

    Hi,

    You can use img tag to embed images from dropbox, mediafire, imgur etc.

    <img src"IMAGE LINK HERE">

    Regards,

    Ismael

    in reply to: Please contribute and translate Enfold #114955

    Hi,

    @goldbaum: You can find a dutch translation here: http://www.mediafire.com/download.php?cwbpn4yna5wq76n, please contact yingfuli. :)

    https://kriesi.at/support/profile/yingfuli

    Regards,

    Ismael

    in reply to: Breadcrumbs, swap location with page title #131813

    Hi,

    Please add this on your custom.css or Quick CSS

    .title_container .main-title {
    float: right;
    }

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    left: 0;
    }

    Regards,

    Ismael

    in reply to: Changing the Logo Size in Enfold #131786

    Hi,

    When you upload the logo, select the image size before clicking “Use Image as logo”. Then add this on your custom.css or Quick CSS

    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }

    Resize the height and line-height according to the image height of your logo.

    Regards,

    Ismael

    in reply to: Adding Icons next to Menu Items #131381

    Hi,

    Maybe you can add a negative top margin for each menu item.

    #menu-item-755 a {
    margin-top: -10px;
    }

    OR

    .main_menu ul:first-child > li a {
    margin-top: -10px;
    }

    Please give us a link to your website.

    Regards,

    Ismael

    in reply to: Move footer & socket #131394

    Hey,

    Glad all solutions worked. :)

    Cheers,

    Ismael

    Hi,

    1.) Make sure you fill out Enfold > Header > Phone Number or small info text. Edit header.php, find this code

    $phone = avia_get_option('phone');
    $phone_class = !empty($nav) ? "with_nav" : "";
    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";

    Cut it then place it below this comment:

    /*
    * display the themes social media icons, defined in the wordpress backend
    * the avia_social_media_icons function is located in includes/helper-social-media-php
    */

    Add this on your custom.css or Quick CSS

    .phone-info {
    padding-top: 10px;
    margin-left: -20px;
    }

    2.) Please give us a link to the website. We need to inspect your button. Try to change the input button color on Quick CSS

    .main_color input[type='submit'] {
    background-color: red;
    }

    Regards,

    Ismael;

    in reply to: Comments section not showing up #131768

    Hi,

    Edit single-portfolio.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );

    Below, add this code:

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    Regards,

    Ismael

    in reply to: Image column 1/5 non-responsive #131550

    Hi,

    Did you insert the Image element inside a 1/5 column element? The images with or without links inside a 1/5 column are responsive on my end. Please upgrade to Enfold 1.8.4.

    Can you give us a screenshot?

    Regards,

    Ismael

    in reply to: Contact Form in Template? #131758

    Hi,

    Are you trying to copy the html rendered by the shortcode? You can just copy the contact form shortcode:

    [av_contact email=///' button='Submit' title='Send us mail' sent='Your message has been sent!' autorespond='' captcha='']<br />
    [av_contact_field label='Name' type='text' check='is_empty']<br />
    [av_contact_field label='E-Mail' type='text' check='is_email']<br />
    [av_contact_field label='Subject' type='text' check='is_empty']<br />
    [av_contact_field label='Message' type='textarea' check='is_empty']<br />
    [/av_contact]

    This is the actual HTML input

    <form action="http://localhost/kriesi/enfold/?page_id=2307" method="post" class="ajax_form avia-builder-el-0 avia-builder-el-no-sibling " data-avia-form-id="1"><fieldset><h3>Send us mail</h3><p class='' id='element_avia_name_1'><label for="avia_name_1">Name <abbr class="required" title="required">*</abbr></label> <input name="avia_name_1" class="text_input is_empty" type="text" id="avia_name_1" value=""/></p><p class='' id='element_avia_e-mail_1'><label for="avia_e-mail_1">E-Mail <abbr class="required" title="required">*</abbr></label> <input name="avia_e-mail_1" class="text_input is_email" type="text" id="avia_e-mail_1" value=""/></p><p class='' id='element_avia_subject_1'><label for="avia_subject_1">Subject <abbr class="required" title="required">*</abbr></label> <input name="avia_subject_1" class="text_input is_empty" type="text" id="avia_subject_1" value=""/></p><p class='' id='element_avia_message_1'> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message <abbr class="required" title="required">*</abbr></label> <textarea name="avia_message_1" class="text_area is_empty" cols="40" rows="7" id="avia_message_1" ></textarea></p><p class="hidden"><input type="text" name="avia_avia_username_1" class="hidden " id="avia_avia_username_1" value="" /></p><p class=""><input type="hidden" value="1" name="avia_generated_form1" /><input type="submit" value="Submit" class="button" /></p></fieldset></form><div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1 hidden"></div>

    Regards,
    Ismael

    in reply to: Layer Slider – Effects failure on basic design #131733

    Hi,

    You can add the missing letter spacing on your custom.css or Quick CSS

    .ls-s-1 {
    letter-spacing: 100px !important;
    }

    To make sure you’re targeting the correct element, add a unique selector for each LayerSlider layer.

    For example, you can enclose “STRATEGIC FOCUS” on a p tag with a unique selector:

    <p class="strategic-selector">STRATEGIC FOCUS</p>

    If some of the embedded css code like letter-spacing doesn’t work, you can override them on your custom.css or Quick CSS

    p.strategic-selector {
    letter-spacing: 100px !important;
    }

    I think LayerSlider is awesome. Thanks to the great minds of Kreatura Media. :)

    Regards,

    Ismael

    Hi,

    It won’t affect your site so you might want to hide the warning like Dude said.

    http://codex.wordpress.org/Editing_wp-config.php#Debug

    Regards,

    Ismael

    in reply to: Javascript installation question #131828

    Hi,

    You can paste the javascript on footer.php, find this code:

    <a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
    <div id="fb-root"></div>

    Place the script on top of it.

    Regards,

    Ismael

    in reply to: Only show title at blog posts #131546

    Hey,

    Glad it worked. :)

    Note that the code above will hide all post slider images on single post view.

    Cheers,

    Ismael

    in reply to: change background color for top heading section #129401

    Hi,

    Please use this:

    .header_color .header_bg {
    background-color: rgba(255, 0, 0, 0.6);
    }

    Regards,

    Ismael

Viewing 30 posts - 64,291 through 64,320 (of 66,017 total)