Forum Replies Created

Viewing 30 posts - 62,011 through 62,040 (of 64,054 total)
  • Author
    Posts
  • in reply to: Adding gradient background to icons #134815

    Hi,

    Which icons do you want to add background to? Iconlist? Iconbox?

    Regards,

    Ismael

    in reply to: Major problem with SAFARI and my menu drop down… #134575

    Hi,

    I tested your site using Safari on a Windows machine and it looks ok.

    I’ll tag Kriesi and Devin to check this out.

    Cheers,

    Ismael

    in reply to: Line below Advanced Layer slider #134569

    Hey,

    Please add this on your custom.css or Quick CSS

    .home #av_section_1 {
    border: none !important;
    }

    Regards,

    Ismael

    in reply to: Issue with Layer Slider Images #134420

    Hi,

    Please give the logo image with a unique css selector then copy the css code on your Quick CSS or custom.css, apply it on the specified selector. Place !important if necessary.

    Regards,

    Ismael

    in reply to: Remove breadcrumb on all pages #127874

    Hi,

    You can use this:

    .header_color .sub_menu>ul>li>a {
    font-size: 14px;
    color: red;
    }

    You can also change the phone number size and color with this:

    .phone-info.with_nav {
    font-size: 14px;
    color: red;
    }

    Regards,

    Ismael

    Hi,

    What I’m saying is, copy the code from Quick CSS to the custom.css located on the theme’s css folder. You can edit it via FTP or your cpanel.

    Regards,

    Ismael

    in reply to: Back End of Enfold has disappeared. #133842

    Hi,

    You can’t work on the Advance Layout Editor(ALE) and the Default Editor at the same time. You need to stick on ALE if you started editing the page using it. You can switch the Layout Builder to debug mode, this way you’ll be able to see the actual shortcode while working on the Advance Layout Editor. Edit functions.php, find this code:

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

    Below, add this:

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

    Please increase the wordpress php memory limit. Edit wp-config.php, add this code:

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

    Also, click Screen Options and make sure that the Avia Layout Builder is enabled.

    Regards,

    Ismael

    in reply to: How to change display, when i click 'category' widget? #134491

    Hi,

    You need to use the <!– more –> tag to specify the excerpt or enable the Excerpt on Screen Options.

    http://en.support.wordpress.com/splitting-content/more-tag/

    Regards,

    Ismael

    in reply to: Getting rid of underline in footer blog post link #134493

    Hi,

    Please add this on your custom.css or Quick CSS

    .widget_recent_entries li {
    border: none;
    }

    Regards,

    Ismael

    in reply to: how to remove the debug information #134342

    Hi,

    Please add this at the very bottom of the functions.php file:

    add_filter('avf_debugging_info', 'remove_debugging_info', $info);
    function remove_debugging_info($info) {
    $info = '';
    return $info;
    }

    Regards,
    Ismael

    in reply to: Toggle image/icon #134336

    Hey,

    Glad you found a solution.

    Cheers,

    Ismael

    in reply to: Ajax Search #134286

    Hi,

    The revision I gave you for the function-enfold.php works on my end. Please do it again, remove browser cache the reload the page.

    Regards,

    Ismael

    in reply to: Shortcodes not working for layerslider? #133361

    Hi,

    The shortcode for the Layer Slider is disabled. It is not going to work. Please use the Advance Layout Editor if you want to add the Layer Slider.

    Regards,

    Ismael

    in reply to: ShareThis on Latest 1.9.1 Enfold #134474

    Hi,

    Please give us a link to the bbPress forum page and the forum category tables. We’ll give you a proper css code to hide them on that specific pages.

    Regards,

    Ismael

    in reply to: Blank page if I create a new menu with WPML active #134471

    Hi,

    Please refer to this link: https://kriesi.at/support/topic/after-the-upgrade-pages-return-404-error

    Or increase the php memory limit. Edit wp-config.php, add this code:

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

    Regards,

    Ismael

    in reply to: Please contribute and translate Enfold #114961

    Hi,

    There are certain characters/words that you need to modify or translate to make it fully compatible on another theme.

    Regards,

    Ismael

    in reply to: animaiton='slide' does not work at IE9 #134468

    Hi,

    There are certain css properties that are not supported on some browsers like the css transition property.

    http://www.w3schools.com/css3/css3_transitions.asp

    Regards,

    Ismael

    Hi,

    Please use this plugins for the social icons on footer widgets

    http://wordpress.org/plugins/addthis/

    http://wordpress.org/plugins/share-this/

    Regards,

    Ismael

    in reply to: contact 7 side by side text fields #133855

    Hi,

    It always say “”Your access to this site has been limited”” when I clicked on any links. I don’t see the original issue where you place a table for name and age fields.

    Edit config-templatebuilder > aviashortcode > portfolio.php, find this code:

    $link_markup = apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);

    Replace it with:

    $link_markup = apply_filters('avf_portfolio_custom_image_container', array("a target='_blank' href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);

    Regards,

    Ismael

    in reply to: Need to remove image from top of category page #134431

    Hi,

    You can use this on your custom.css or Quick CSS

    .tax-product_cat .page-thumb {
    display: none;
    }

    You can be more specific and remove it on certain product category only. For example, you have a category called “CSS”, use this:

    .term-css .page-thumb {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Problem with post slider and testimonials not rotating #134430

    Hi,

    Please upgrade to Enfold 1.9.1. This will fix the slider.

    Regards,

    Ismael

    in reply to: Increase sidebar width #134427

    Hi,

    First, you need to decrease the template content div.

    @media only screen and (min-width: 1140px) {
    .responsive .container .nine.units {
    width: 660px;
    }
    )

    The sidebar’s width will increase automatically on this screen width because it is set to 100%.

    You need to use Media Queries to target the next screen size for the content, the sidebar will follow:

    .container .nine.units {
    width: 570px;
    }

    And another, to target smaller screen sizes:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .container .nine.units {
    width: 399px;
    }
    }

    We decrease the content width by 100px for each screen sizes therefore you will have a 100px bigger sidebar.

    Regards,

    Ismael

    in reply to: Differents LayerSlider #132545

    Hi,

    I think Dude’s suggestion is what you’re looking for. Create two or three sliders, one layer slider for page 1 and the other for page 2. You can’t select or filter the slides to show on a certain page and not on the other.

    Regards,

    Ismael

    in reply to: Remove breadcrumb on all pages #127872

    Hi,

    @elames: Thanks for the tip.

    @bevlogenverf: I don’t see the breadcrumbs or page title on every page. I assume you already fixed it. If you didn’t, just add this on your custom.css or Quick CSS

    .title_container {
    display: none;
    }

    And I can see that you’re having a style issue on your menus, I think this will fix it:

    .main_menu ul:first-child > li > a {
    font-size: 13px;
    font-weight: 500;
    }

    You can adjust the font size to 12.

    Regards,

    Ismael

    in reply to: Issue with Layer Slider Images #134418

    Hi,

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

    On LayerSlider WP, edit the layer, under Style panel add a padding on top, bottom, left and right. Give it a background or add this on custom style settings field:

    background: rgba(255,255,255,.5);

    This will create a transparent white box around the logo.

    Regards,

    Ismael

    in reply to: Gallery image loading problem IE10 #134398

    Hi,

    Please give us a link to the actual website so that we can check it and give you a proper solution. It is not happening on our end.

    Regards,

    Ismael

    in reply to: Cufon Style to be responsive #133256

    Hi,

    You have a lot of cufon fonts on your site and targeting them each will be a pain in the arse. I suggest you use the default google fonts or add your own. Edit functions.php, add this line of code below line 3:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Arvo'] = 'Arvo:400,700';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Arvo'] = 'Arvo:400,700';
    return $fonts;
    }

    You can browse google web fonts here:

    http://www.google.com/fonts/

    Regards,

    Ismael

    in reply to: q about scroll speed #134272

    Hi,

    Edit js > avia.js, find this code under smoothscroll function:

    var target = container.offset().top - fixedMainPadding,
    oldLocation=window.location.href.replace(window.location.hash, ''),
    newLocation=this,
    duration= data.duration || 800,
    easing= data.easing || 'easeOutQuint';

    Set duration= data.duration || with a higher value like 8000.

    Regards,

    Ismael

    in reply to: Enfold Feature Requests #114781

    Hey,

    @kommbuero: You can actually do it by editing function-enfold.php, find this code:

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = false)

    Set it to true:

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = true)

    Regards,

    Ismael

    in reply to: contact 7 side by side text fields #133852

    Hi,

    I can’t access your website.

    “Your access to this site has been limited”

    Regards,

    Ismael

Viewing 30 posts - 62,011 through 62,040 (of 64,054 total)