Forum Replies Created

Viewing 30 posts - 65,401 through 65,430 (of 66,017 total)
  • Author
    Posts
  • in reply to: ** ISSUE ** Transparent layer effecting colors #121720

    Hi,

    Which parts or texts do you want to change? Can you be more specific?

    Regards,

    Ismael

    in reply to: Advanced Layout Editor disappeared #121699

    Hey,

    Glad Devin helped you.

    Cheers,

    Ismael

    in reply to: advertise widget #121624

    Hi,

    You can adjust the width of the advertisement area.

    .avia_partner_widget a, .avia_partner_widget a:hover {
    width: 99%;
    }

    You can also specify the height.

    .avia_partner_widget a, .avia_partner_widget a:hover {
    height: 200px;
    }

    Regards,

    Ismael

    in reply to: Social Media Icons and Top Bar Menu Switch Locations #121813

    Hi,

    Just add this on your custom.css

    .sub_menu {
    position: absolute;
    left: 0;
    }

    #top .social_bookmarks {
    right: 0;
    position: absolute;
    }

    Regards,

    Ismael

    Hi,

    You can hide the breadcrumb via CSS. Please add this on your custom.css or Quick CSS

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    If you want to hide it on a specific page or post, you can add the unique body id. If you’re using chrome, right click the page > inspect element, look for the body class.

    .page-id-1122 .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Sidebar Background #121727

    Hi,

    This is the code for that area.

    <div class="flex_column av_one_third   avia-builder-el-7  el_after_av_two_third avia-builder-el-last  "><div class="avia_textblock">
    <div style="color: #ffffff; background-color: #434c56; padding: 20px; border-top-left-radius: 25px; border-top-right-radius: 25px; margin-bottom: -40px; text-align: center;">
    <p style="font-size: 15px;"><img class="alignnone wp-image-1928" alt="ContentCTA" src="http://symbioticmarketing.co.uk/wp-content/uploads/2013/04/ContentCTA.png" width="290" height="152"></p>
    <p style="font-size: 15px;">Or simply fill in your details below<br>
    and we will get back to you.</p>
    <p style="text-align: center; font-size: 15px;">You have nothing to lose and<br>
    only new business to gain.</p></div>
    </div>
    <form action="http://symbioticmarketing.co.uk/services/corporate-blogging-copywriting/" method="post" class="ajax_form avia-builder-el-9 el_after_av_textblock avia-builder-el-last " data-avia-form-id="1">
    <fieldset>
    <p class="" id="element_avia_name_1"><label for="avia_name_1">Name*</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*</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_contact_number_1"><label for="avia_contact_number_1">Contact Number*</label> <input name="avia_contact_number_1" class="text_input is_empty" type="text" id="avia_contact_number_1" value=""></p>
    <p class="" id="element_avia_sign_up_for_our_email_newsletter_1"> <input name="avia_sign_up_for_our_email_newsletter_1" class="input_checkbox " type="checkbox" id="avia_sign_up_for_our_email_newsletter_1" value="true"><label for="avia_sign_up_for_our_email_newsletter_1">Sign up for our email newsletter</label></p>
    <p class="" id="element_avia_message_1"> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message*</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>
    </div>

    He used border-top-left-radius: 25px; border-top-right-radius: 25px;.

    http://border-radius.com/

    Regards,

    Ismael

    in reply to: Layer Slider and Secondary Menu #121221

    Hi,

    Sorry, my bad.

    There are header options without the top section but you can add this on your custom.css or Quick CSS to hide it.

    #header_meta {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Woocommerce product pages not showing up properly #121758

    Hi,

    Single product pages don’t usually have a sidebar.

    It will require a bit of modification because of the single product page’s layout, please hide it. Use this on your custom.css

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

    Regards,

    Ismael

    in reply to: How to remove featured image inside single post? #117991

    Hi,

    Can you give us a link to your website?

    Please check functions.php. Do you have this line of code? 281-321

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = false)
    {
    if(!is_singular() || is_post_type_hierarchical(get_post_type())) return;
    //if(get_post_type() === 'portfolio') return;

    global $avia_config;

    $same_category = apply_filters('avia_post_nav_categories', $same_category);
    $entries['prev'] = get_previous_post($same_category);
    $entries['next'] = get_next_post($same_category);
    $output = "";

    foreach ($entries as $key => $entry)
    {
    if(empty($entry)) continue;

    $tc1 = $tc2 = "";
    $link = get_permalink($entry->ID);
    $image = get_the_post_thumbnail($entry->ID, 'thumbnail');
    $class = $image ? "with-image" : "without-image";

    $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    $output .= " <span class='label iconfont'>".$avia_config['font_icons'][$key]."</span>";
    $output .= " <span class='entry-info-wrap'>";
    $output .= " <span class='entry-info'>";
    $tc1 = " <span class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</span>";
    if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
    $output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
    $output .= " </span>";
    $output .= " </span>";
    $output .= "</a>";
    }
    return $output;

    //add this line for fake. never gets executed but makes the theme pass Theme check
    if(1==2){paginate_links(); posts_nav_link(); next_posts_link(); previous_posts_link();}
    }
    }

    Regards,

    Ismael

    Hi,

    I can’t see the flickering when I re-size the browser. What browser are you using?

    Let me tag the rest of the support team to check.

    Regards,

    Ismael

    in reply to: Enfold – Footer Title FONT CHANGE #120311

    Hey,

    Glad it worked.

    Regards,

    Ismael

    in reply to: Hyperlink rollover not working #121553

    Hi,

    How did you add the images without rollover effect?

    If you want the rollover effect, you need something like this

    <a href="http://www.klimhal-events.nl" class="avia_image  avia-builder-el-3  avia-builder-el-no-sibling avia-align-center ">
    <img class="avia_image avia_animated_image avia_animate_when_almost_visible top-to-bottom avia_start_animation" src="http://lavitasana.oscar.nl/wp-content/uploads/2013/05/landing-LVS-021-300x240.png" alt="">
    <span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span></a>

    This line of code is the rollover effect

    <span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span>

    They need to be included.

    Regards,

    Ismael

    in reply to: Using an image and slider in footer column #121483

    Hello,

    You can use the text widget to insert tag on the footer. You need to use Media Queries to make it responsive.

    Regards,

    Ismael

    in reply to: Issues – Simple Icons in the footer #121471

    Hi,

    You can play around with the column width and the margin. Use this

    #footer .flex_column.av_one_third {
    width: 25%;
    margin-left: 8%;
    }

    Regards,

    Ismael

    in reply to: Left Sidebar Menu & Footer #120855

    Hey,

    It is possible. Edit sidebar.php then find this code

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order, post_title');
    $children = wp_list_pages($args);

    Change it to this

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order', 'sort_order' => 'ASC');
    $children = wp_list_pages($args);

    You can refer to this link for more sorting options.

    http://codex.wordpress.org/Function_Reference/wp_list_pages

    Regards,

    Ismael

    in reply to: Header Border (bottom) #121310

    Hi,

    Please add this on your custom.css

    #header_main {
    border-bottom: none;
    }

    .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    border-top: none;
    }

    #header_main .container {
    border-bottom: 1px solid #E1E1E1;
    }

    Regards,

    Ismael

    in reply to: font color sidebars and widgets #121108

    Hey!

    Sure :))

    Best regards,

    Ismael

    Hey,

    Sorry for the delay. You can move the menu via CSS. Just add this on your custom.css or Quick CSS

    #menu-top-menu {
    margin-top: 30px;
    margin-left: -180px;
    }

    Adjust the values.

    Regards,

    Ismael

    in reply to: how to create a banner at the top #121571

    Hi,

    I think that is the logo. Just insert your logo on Enfold > Logo.

    Regards,

    Ismael

    Hello,

    Please don’t use the LayerSlider shortcode because it is not working. Go to Advance Layout Editor, under Media Elements, insert the LayerSlider.

    Regards,

    Ismael

    in reply to: Facebook Like button #117640

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Facebook Like button #117639

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: padding for advanced layer slider #121426

    Hi,

    You can insert the Horizontal Ruler element, select Whitespace. You can even indicate the height.

    Regards,

    Ismael

    in reply to: how to clone an existing page within the Enfold theme #121413

    Hi,

    @formateins: Thanks for the tip.

    Or you can add this on your functions.php

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

    Cheers,

    Ismael

    in reply to: Unable to Install the Theme #120814

    Hey,

    Glad you fixed it.

    Cheers,

    Ismael

    Hi,

    Refresh your page a few times.

    These are the steps you can do

    – Deactivate all plugins then reactivate them to check which plugin is interfering with the Screen Options.

    – Switch back to TwentyTwelve theme, see if the button works.

    – Re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress?

    – Increase the memory available on your PHP.

    1. If you have access to your PHP.ini file, change the line in PHP.ini

    If your line shows 32M try 64M. If your line shows 64M try 128M

    memory_limit = 64M ; Maximum amount of memory a script may consume (32MB)

    2. If you don’t have access to PHP.ini try adding this to an .htaccess file:

    php_value memory_limit 64M

    3. Try adding this line to your wp-config.php file:

    Increasing memory allocated to PHP

    define(‘WP_MEMORY_LIMIT’, ’64M’);

    4. Talk to your host.

    Regards,

    Ismael

    in reply to: Grid blog post excerpt length #121045

    Hi,

    Let me tag Kriesi.

    Regards,

    Ismael

    in reply to: Calling post_type=page i receive a blank page #120252

    Hi,

    I think user.ini is almost the same as .htaccess. Please contact your host to make the certain changes for you.

    Regards,

    Ismael

    in reply to: Slider for pages #121233

    Hi,

    You kinda lost me there. Are you talking about the navigation?

    Let me tag the rest of the support team.

    Regards,

    Ismael

    Hi,

    Please try to add this css code

    .grid-content {
    padding: 16px !important;
    position: relative;
    }

    Regards,

    Ismael

Viewing 30 posts - 65,401 through 65,430 (of 66,017 total)