Forum Replies Created

Viewing 30 posts - 65,851 through 65,880 (of 67,037 total)
  • Author
    Posts
  • Hey,

    Glad it worked.

    Regards,

    Ismael

    in reply to: socket nav color #126742

    Hi,

    Are you talking about the text color of the menu at the bottom?

    Please try this:

    #top .sub_menu_socket ul:first-child > li > a {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Reposition main menu AJAX Search Box #127009

    Hi,

    What type of header are you using?

    Try this:

    #top #menu-item-search > a {
    position: absolute;
    left: -930px;
    top: 10px;
    }

    .avia-search-tooltip.avia-tt {
    top: 85px !important;
    }

    Regards,

    Ismael

    in reply to: chaning h1, h2… etc to lowercase #122714

    Hi,

    Please try this:

    body {
    text-transform: none !important;
    }

    Regards,

    Ismael

    in reply to: Description Column in Tables Not Displaying on iPhone #126762

    Hi,

    Please give us a link to your website.

    Regards,

    Ismael

    in reply to: Visual Toolbar Disappears #126733

    Hi,

    Increase the php memory limit again. Upgrade to Enfold 1.7.

    Switch the Avia Builder to debug mode Edit functions.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 Advance Layout Editor.

    Regards,

    Ismael

    in reply to: VIDEO ON LAYERSLIDER #126981

    Hi,

    You can only embed videos from youtube, vimeo etc.

    Though there are various plugins that you can use. Not sure if they are compatible with the theme.

    http://videopress.com/

    http://wordpress.org/plugins/vipers-video-quicktags/

    Regards,

    Ismael

    in reply to: Easy Slider Problem #126633

    Hi,

    Kriesi said it will be fix on the next update. Do you have Enfold 1.7?

    Regards,

    Ismael

    in reply to: Adjust width fixed layout #123439

    Hi,

    You should probably visit css > grid.css for container units.

    Regards,

    Ismael

    in reply to: remove menu for mobile #121847

    Hi,

    Please add this on your custom.css or QUick CSS

    @media only screen and (max-width: 767px) {
    .responsive .main_menu {
    position: static;
    display: none;
    }
    }

    Cheers,

    Ismael

    in reply to: Archive Page title – edit #126885

    Hi,

    Edit framework > php > function-set-avia-frontend.php, find the code online 817.

    if(!function_exists('avia_which_archive'))

    You can change the text below:

    if ( is_category() )
    {
    $output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
    }
    elseif (is_day())
    {
    $output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
    }
    elseif (is_month())
    {
    $output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
    }
    elseif (is_year())
    {
    $output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
    }

    Regards,

    Ismael

    in reply to: Sidebar #126061

    Hi!

    Please use this instead.

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (max-width: 1024px) {
    .responsive #top #main .sidebar {display:block !important; }
    }

    Best regards,

    Ismael

    in reply to: Change image size #126552

    Hi,

    Please add this on your custom.css or Quick CSS

    .page-id-40 .big-preview.multi-big {
    width: 302px !important;
    height: 225px !important;
    margin: 0 auto 40px auto;
    }

    .page-id-40 .fullsize .template-blog .big-preview.multi-big {
    margin-bottom: -20px;
    }

    Regards,

    Ismael

    in reply to: Portfolio categories filter #126862

    Hi,

    Looks like Kriesi answered your post.

    https://kriesi.at/support/topic/portfolio-previousnext-entry-in-same-category/#post-61281

    Regards,

    Ismael

    in reply to: Troubles With Colors… #126861

    Hi,

    What type of header do you have?

    Please give us a link to the website.

    For starters, you can add this on your custom.css or Quick CSS

    #header_main {
    background: red;
    }

    #header_meta {
    background: blue;
    }

    Regards,

    Ismael

    in reply to: Visual Toolbar Disappears #126731

    Hi,

    Increase wordpress php memory limit:

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Set it to 128M or higher.

    Regards,

    Ismael

    in reply to: Contact form Dates #126856

    Hi,

    You can use the Contact Form 7 plugin then add this feature:

    http://wordpress.org/plugins/contact-form-7-datepicker/

    Regards,

    Ismael

    in reply to: Mouse hover effect in blog is missing #126250

    Hi,

    Can you possibly disable the plugin completely? Remove browser cache then reload the page. See if the hover effect is working.

    I don’t see the html code for overlay effect below the blog post image.

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

    Regards,

    Ismael

    in reply to: Enfold portfolio dokumentation #126395

    Hi,

    2.) Edit Portfolio Grid > find Link Handling, select Open entry on a new page.

    3.) Yes, it will probably overwrite the content. Just create a separate test installation then Import the dummy data.

    Regards,

    Ismael

    in reply to: Fixed Header with Social Icons #126838

    Hi,

    Open js > avia.js, find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;

    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace it with this:

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    social = $('#header_meta'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    social.show();
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    social.hide();
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Regards,

    Ismael

    in reply to: 404 on dynamic_avia/enfold.css?ver=1 #121827

    Hi,

    @garyherman: Thanks for the tip. :)

    Cheers,

    Ismael

    in reply to: Portfolio Grid Thumbnail Size #126358

    Hi,

    You can use this:

    .grid-entry .inner-entry {
    width: 90%;
    margin-left: 5%;
    }

    .sort_width_container {
    padding-left: 1.5%;
    }

    Regards,

    Ismael

    in reply to: ShareThis Plugin Cropped #126719

    Hi,

    Please add this on your custom.css or Quick CSS

    .stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices {
    height: 22px !important;
    line-height: 20px;
    }

    Regards,

    Ismael

    in reply to: Menu overlapping on the logo (ipad) #122250

    Hi,

    Please give us a link to your website. Maybe, you have a lot of menu items.

    Regards,

    Ismael

    in reply to: Adding Paypal Button to pricing table #124246

    Hi,

    I fixed the buttons, please check here: http://www.academieaugust.com/?page_id=1176

    Looks like every time you save the table, it adds a backslash on the paypal form code.

    Example is:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="4F53A5YJ6CR6L">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>

    After save will look like this:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="4F53A5YJ6CR6L">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>

    It is alright after you click the Save button for the first time but the backslash will add up when you save it again and again.

    Let me tag Kriesi.

    Regards,

    Ismael

    in reply to: Responsive Layout problems with iPad/Tablets #126586

    Hi,

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

    @media only screen and (max-width: 900px) {
    .responsive .title_container .breadcrumb {
    position: relative;
    right: auto;
    top: -6px;
    margin: 0;
    left: -2px;
    }
    }

    2.) Use this

    @media only screen and (max-width: 900px) {
    .js_active .top_tab .tab {
    border-bottom: none;
    padding: 9px 5px 9px 5px;
    font-size: 10px;
    }
    }

    3.) Please use this

    @media only screen and (max-width: 900px) {
    .iconbox .iconbox_content .iconbox_content_title {
    letter-spacing: 0;
    font-size: 12px;
    }
    }

    Seems like all of the issues above can be fix with media queries. You can combine all of the solution above.

    Regards,

    Ismael

    in reply to: Enfold- Archive Exceprts #126278

    Hi,

    You need to create a folder called “includes” then place the files like loop-index.php inside.

    Regards,

    Ismael

    in reply to: Countdown Clock #126030

    Hey,

    I haven’t tried those plugins. I’m glad it worked for you. :)

    Cheers,

    Ismael

    in reply to: Re previous solution 5 column portfolio php edit #126867

    Hi,

    You need to edit the file via FTP or your cpanel.

    http://www.siteground.com/tutorials/cpanel/file_manager.htm

    Regards,

    Ismael

    in reply to: Progress Bars – Custom color (no strobe effect) #126095

    Hi,

    Please use this

    .black-bar .bar {
    background: red;
    }

    Regards,

    Ismael

Viewing 30 posts - 65,851 through 65,880 (of 67,037 total)