Forum Replies Created

Viewing 30 posts - 82,291 through 82,320 (of 82,589 total)
  • Author
    Posts
  • in reply to: mega menu styling #138677

    Hi Sebastian,

    Please add following code to Quick CSS in Enfold theme options under Styling

    #top .header_color a:hover .avia-bullet { border-color: white!important; }

    .header_color .avia-bullet { border-color: blue; }

    Regards,

    Yigit

    in reply to: Socket alignment #140982

    Hi Fabiana,

    Please follow instructions, it will do it

    Regards,

    Yigit

    in reply to: sidebars and navigation on header #138054

    Hi

    Amen! ;D

    You are welcome, glad we could help.

    Regards,

    Yigit

    in reply to: Socket alignment #140980

    Hi Fabiana,

    In your WordPress theme directory please go to Enfold folder and open Footer.php file and find following code between 98-105

    <?php
    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";
    ?>

    and right under it add following code

    Then add following code to Quick CSS in Enfold theme options

    span.copyright1 { float: right; }

    Regards,

    Yigit

    in reply to: H4 size text has bottom section cut off #141035

    Hi,

    It only happens when font size is 17px. You can change it to 18px by adding following code to Quick CSS in Enfold theme options

    h4 { font-size: 18px!important; }

    Regards,

    Yigit

    in reply to: Socket alignment #140977

    Hi Fabiana,

    Can you post the link to your website?

    Regards,

    Yigit

    in reply to: sidebars and navigation on header #138051

    Hi Carolina,

    Can you create a temporary admin login and send it to me on ? I did not think about mobile navigation. I can fix it quickly

    Regards,
    Yigit

    • This reply was modified 9 years, 3 months ago by Yigit.
    in reply to: How i make my logo bigger? #140913

    Hi,

    Please add following code to Quick CSS in Enfold theme options under Styling

    #header_main { padding-bottom: 34px!important; }
    #main { padding-top: 123px!important; }
    strong.logo { height: 100px!important; }
    span.avia-menu-fx { display: none!important; }

    Regards,

    Yigit

    in reply to: change permalink in footer – enfold latest portfolio #141059

    Hi,

    Please go to Enfold theme options > General settings and you will page slug at the bottom of that page

    Regards,

    Yigit

    in reply to: Align images with captions #140952

    Hi,

    You can also add following code to Quick CSS to level them

    div#attachment_2494.wp-caption.alignleft { margin-top: 47px; }

    div#attachment_3127.wp-caption.alignleft { margin-top: 26px; }

    Regards,

    Yigit

    in reply to: CSS: .avia-tooltip width: auto !important is beeing ignored. #141038

    Hi,

    Can you post the link to your website?

    Regards,

    Yigit

    in reply to: Space between layout items #141034

    Hi,

    Could you post a screenshot showing which item you would like to have less padding? if you would like to edit for all items then there will be so many CSS codes and it may break the layout

    Regards,

    Yigit

    in reply to: Disable uppercase #141000

    Hi,

    If that is the case you can use

    body { text-transform: capitalize!important; }

    it will capitalize first characters

    Regards,

    Yigit

    in reply to: Socket alignment #140975

    Hi Fabiana,

    You can use

    { text-align: right; }

    Regards,

    Yigit

    in reply to: How Can I Put the Navigation Menu Under the logo #140844

    Hi,

    Please change this code

    div.main_menu { right: 90%; top: 57%; }

    to this one

    div.main_menu { left: -1%; top: 57%; }

    Regards,

    Yigit

    in reply to: Set the header logo in the vertical middle #141072

    Hi,

    Can you post the link to your website please?

    Regards,

    Yigit

    in reply to: Portfolio Order #140862
    in reply to: Enfold theme old one #140835

    Hi,

    You are welcome, glad we could help :)

    Regards,

    Yigit

    in reply to: Disable uppercase #140998

    Hi,

    Please try adding following code to Quick CSS in Enfold theme options under Styling

    body { text-transform:lowercase!important; }

    Regards,

    Yigit

    in reply to: Lost the advanced page template editor after updating WordPress #140993

    Hi Ben,

    Please see this topic https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help and let us know if it does not help

    Regards,

    Yigit

    in reply to: Font Size #140990

    Hi,

    Please add following code to Quick CSS in Enfold theme options under Styling

    body { font-size: 18px!important; }

    Regards,

    Yigit

    in reply to: Remove iconlist animation effects #140659

    Hi,

    In your WordPress directory please go to Enfold > Js and open Shortcodes.js and search for “Iconlist shortcode javascript” ( should be in line 605 ) and comment out or delete all the code untill “Section Link Main Menu controler for one page sites”.

    Then add following code to Quick CSS in Enfold theme options under Styling

    .avia_transform .avia-icon-list .iconlist_icon { opacity: 1!important; -webkit-transform: scale(1)!important; transform: scale(1)!important;
    -ms-transform: scale(1)!important; }

    I’m not sure if this is the best way to do it but does the trick.

    Regards,

    Yigit

    in reply to: Woocommerce related products image size #140867

    Hi Andreas,

    Please add following code to Quick CSS in Enfold theme options under Styling

    #top .thumbnail_container img { margin: 0 auto!important; width: 170px; height: 257px; }

    Regards,

    Yigit

    in reply to: Font Stack #137089

    Hi,

    Not through wp-include but you should go to wp-content > themes > Enfold > Includes > Admin and register-admin-options.php file is there

    Regards,

    Yigit

    in reply to: Spelling mistake in search module. #140863

    Hi,

    In your WordPress theme directory please go to Enfold and open Search.php file and search for “bellow” and change it.

    Regards,

    Yigit

    in reply to: Disable logo resizing #140896

    Hi,

    In your WordPress theme directory please go to Enfold > Js and open Avia.js file and find following code

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

    and change it to

    if(st < el_height)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height;
    header.addClass('header-scrolled');
    }

    Regards,

    Yigit

    in reply to: Changing Header #140902

    Hi,

    You can post the screenshot here. You can use http://imgur.com/

    Regards,

    Yigit

    in reply to: Padding in Layout Builder #140855

    Hi,

    Please try adding following code to Quick CSS in Enfold theme options under Styling

    body#top.page-id-2627.content { padding-top: 30px; }

    .page-id-2627 div.avia_textblock {margin-left: -30px;}

    Regards,

    Yigit

    in reply to: Portfolio Grid : Resizing images #140626

    Hi,

    Please add following code to Quick CSS in Enfold theme options

    .grid-image img { height: 154px!important; }

    Regards,

    Yigit

    in reply to: Social Media button in Header #140006

    Hi,

    In your WordPress theme directory please go to Enfold folder and open Header.php and find following code in line 171

    do_action('ava_after_main_menu');
    ?>

    and right under it paste your code like

    <?php echo "<iframe class='facebk' src='....'></iframe>"; ?>

    do not forget to change all ” to ‘ inside your iframe code. You can use iframe.facebk class to style your button

    Regards,

    Yigit

Viewing 30 posts - 82,291 through 82,320 (of 82,589 total)