Forum Replies Created

Viewing 30 posts - 63,451 through 63,480 (of 63,991 total)
  • Author
    Posts
  • in reply to: header and Widget background #121378

    Hi,

    Please refer to these links for the header background

    https://kriesi.at/support/topic/mega-menu-bug#post-108100

    https://kriesi.at/support/topic/header-background-image-2

    To change the sidebar background, use this on your Quick CSS

    .sidebar {
    background: red;
    }

    Regards,

    Ismael

    in reply to: Change the height of Portfolio Featured Images #121000

    Hi,

    Please use this plugin.

    http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Regards,

    Ismael

    in reply to: Advanced Layerslider text position #121274

    Hi,

    Go to LayerSlider WP > Select the slider > Global Settings > Basic > Layers Container, specify the width of the container.

    Regards,

    Ismael

    in reply to: Slider for pages #121231

    Hi,

    Yes, of course. Edit a page, go to Advance Layout Editor > under Media Elements, insert a slider.

    Regards,

    Ismael

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

    Hi,

    Contact your host, tell them to increase max_input_vars.

    If you have access to php.ini file, you can add this lines

    max_input_vars = 3000
    suhosin.post.max_vars = 3000
    suhosin.request.max_vars = 3000

    Regards,

    Ismael

    in reply to: Hide Category in every single post title #120986

    Hello Mr. Jonisu,

    Add the css then edit loop-index.php, find this code

    if ( get_comments_number() != "0" || comments_open() ){

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";
    echo "<span class='text-sep'>/</span>";
    }

    Replace it with

    if ( get_comments_number() != "0" || comments_open() ){

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";

    }

    We removed

    echo "<span class='text-sep'>/</span>";

    Regards,

    Ismael

    in reply to: Layer Slider WP text transparency #121284

    Hi,

    Font use is

    h1, h2, h3, h4, h5, h6, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox {
    font-family: Open Sans, 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    PNG text images is preffered when using the LayerSlider WP.

    Regards,

    Ismael

    in reply to: How to change background color of promo box? #121078

    Hi,

    If you are using Google Chrome, right click on the page, click Inspect Element. A new window will appear at the bottom of the page It looks like this.

    I highlighted the body class. On the screenshot above, we have .page-id-734 as the page body id.

    Regards,

    Ismael

    in reply to: getting an error (are you sure you want to do this?) #121281

    Hi,

    Please extract the enfold.zip folder first.

    OR install it via FTP

    Regards,

    Ismael

    in reply to: Custom Menu #121280

    Hi,

    Create a new menu then save it. Look for Theme Locations > Main Menu, select your menu.

    Regards,

    Ismael

    in reply to: social icon links open in a new tab/window #121279

    Hi,

    Open includes >helper-social-media.php then find this code:

    $html  = "";
    $html .= "<".$this->args['inside']." class='".$this->args['class']."_".$icon['social_icon']." social_icon_".$this->counter."'>";
    $html .= "<a href='".$icon['social_icon_link']."' class='avia-font-entypo-fontello'>".$avia_config['font_icons'][$icon['social_icon']]."</a>";
    $html .= "</".$this->args['inside'].">";

    Replace it with this:

    $html  = "";
    $html .= "<".$this->args['inside']." class='".$this->args['class']."_".$icon['social_icon']." social_icon_".$this->counter."'>";
    $html .= "<a target='_blank' href='".$icon['social_icon_link']."' class='avia-font-entypo-fontello'>".$avia_config['font_icons'][$icon['social_icon']]."</a>";
    $html .= "</".$this->args['inside'].">";

    Regards,

    Ismael

    in reply to: How to remove separator lines #121168

    Hello,

    Please add this on your custom.css or Quick CSS

    .container_wrap#footer {
    border: none !important;
    }

    Regards,

    Ismael

    in reply to: edit footer padding too much whitespace #121276

    Hi,

    Just add this on your custom.css

    #footer {
    padding: 10px 0 5px 0;
    }

    Cheers,

    Ismael

    in reply to: Layer Slider and Secondary Menu #121215

    Hi,

    1.) Go to LayerSlide WP, select the slider you are currently using. Go to Global Settings > Basic > Layers Container, specify the width of the container in pixels. Suggested is 1030px.

    2.) You can hide the submenu using this on your custom.css or Quick CSS

    #header_meta .sub_menu {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Image for portfolio items #121099

    Hi,

    Edit a portfolio, look for Featured Image then click “Set featured image”.

    Regards,

    Ismael

    in reply to: Rollover disc arrow replacement – PART 2 #121206

    Hi,

    Maybe you are doing it wrong.

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E714";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"E714";}

    Check this link http://www.entypo.com/characters/. Look at the first icon, which is a telephone. The code is U+1F4DE. If you want to apply that, you can use this.

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}

    Please replace the original code on base.css. It is not working on custom.css.

    Remove browser cache then hard refresh your page to see the changes.

    Regards,

    Ismael

    in reply to: Enfold – Menu drop down height fix #121192

    Hi,

    Your website is on maintenance mode.

    Regards,

    Ismael

    in reply to: ENFOLD – Changed Header Menu issues #121183

    Hi,

    Your website is on maintenance mode.

    Regards,

    Ismael

    in reply to: Need tips on the layout Layout Slider WP #121190

    Hi,

    Import the Dummy data. Check the dimension of the layers on LayerSlider WP. The slider “Enfold – most beautiful theme ever” is a nice example of a responsive slider. Suggested background image size 1600x470px.

    Regards,

    Ismael

    Hey,

    Glad it is fixed.

    Cheers,

    Ismael

    Hi,

    The Advance Layout Editor, in some parts, is a bit unstable at the moment but Kriesi is doing his best to fix the issue. It seems that the problem exist to those who have third party plugins installed. Please deactivate them then reactivate them one at a time, see if the problem persists. Can you still access the page on the frontend?

    Regards,

    Ismael

    in reply to: Header Logo squished in Internet Explorer 8 #121175

    Hi,

    Please add this on your custom.css or Quick CSS

    .logo img {
    max-width: 300px !important;
    }

    Regards,

    Ismael

    in reply to: Problem with table layout in mobile devices #120514

    Hi,

    I’m sorry but I visited the site again and it is unavailable.

    Regards,

    Ismael

    in reply to: Easy slider – image size #121185

    Hi,

    I already reported the issue to Kriesi.

    You can put the EasySlider inside a column, I think that’s the other workaround when using the EasySlider.

    Regards,

    Ismael

    in reply to: Grid blog post excerpt length #121042

    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: Understanding image sizes – Help! #120878

    Hi,

    Sometimes, the best way to get sharp thumbnails is to create thumbnails that fits exactly on the container. This is why we need to change the thumbnails sizes on functions.php. Can you give us a link to your website?

    Regards,

    Ismael

    in reply to: Footer & Socket overlap bbpress entries #121169

    Hi,

    Can you give us a step by step instruction on how you end up with this kind of page? We would like to recreate the page and fix it.

    Regards,

    Ismael

    in reply to: Remove prev/next portfolio #121011

    Hey,

    Glad it is fixed.

    Cheers,

    Ismael

    Hi,

    Suggested image size for that kind of layout is 666x539px. You can change this line on functions.php

    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)

    Regenerate the thumbnails.

    Regards,

    Ismael

    in reply to: post layout and format #120990

    Hey,

    Glad you found it.

    Cheers,

    Ismael

Viewing 30 posts - 63,451 through 63,480 (of 63,991 total)