Forum Replies Created

Viewing 30 posts - 24,721 through 24,750 (of 25,536 total)
  • Author
    Posts
  • in reply to: Making Secondary Menu Bar Bigger #711738

    Hey!

    Try to add this code in Quick CSS:

    #top #header_meta a, 
    #top #header_meta li, 
    #top #header_meta .phone-info {
        font-size: 16px;
    }

    Just adjust the font-size values. Hope this helps :)

    Best regards,
    Nikko

    in reply to: How to add social share counter into the blog bost? #711737

    Hi!

    I would like to confirm if it’s working? please tell us if works, if no try using this code:

    .sumome-share-client-wrapper {
        padding: 0 0 40px !important;
    }

    Cheers!
    Nikko

    in reply to: Responsive background images #711736

    Hey!

    The only solution I can give to ipad is to make it 1 column, try adding this in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      #top #hello .av_one_half {
        display: flex;
        width: 100%;
      }
    }

    Word-breaks can be added via media queries for mobile devices, you can add this code in Quick CSS:

    @media only screen and (max-width:767px) {
      * {
        word-break: break-all;
      }
    }

    As for gaps and paddings, can you post a screenshot if those issues still persists (pls specify if mobile or ipad) even after adding the code above.

    Cheers!
    Nikko

    in reply to: Font styling, footer height, new fonts and more #711734

    Hi!

    You can use font-weight css code. You can add it after your text-transform code or you can use this code:

    #avia-menu > li > a {
        font-weight: normal;
    }

    Just adjust the values. Hope it helps :)

    Cheers!
    Nikko

    in reply to: Social Icons on mobile menu appear not correctly #711510

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Nikko

    in reply to: Font styling, footer height, new fonts and more #711508

    Hi,

    You can edit the main menu links in Enfold > Advanced Styling, Just select Main Menu Links. For the footer you will need to use css code to modify the top and bottom margin/padding, just add this to Quick CSS and just modify the values:

    #footer {
        padding-bottom: 15px;
    }
    
    #footer .widget {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    Best regards,
    Nikko

    in reply to: Adding a Contact Button to a widget #711505

    Hey gwinenvato,

    Try to use a text widget and add a button shortcode example:

    [av_button label='Click me' link='manually,http://www.website.com' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='']

    Just change the label, link, custom_bg and custom_font. Hope this helps. :)

    Best regards,
    Nikko

    in reply to: Changing color #711504

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: How to add social share counter into the blog bost? #711503

    Hi,

    Try to add this code in Quick CSS:

    .single .entry-content-wrapper > .post_delimiter {
        margin-bottom: 0;
        padding: 20px 0 0;
    }

    Best regards,
    Nikko

    in reply to: sidebar logo icons #711501

    Hey!

    Sorry, I made a mistake on my code, please change this:

    #.sidebar_left .menu li:first-child a {
      border-top: 0;
    }

    To this one:

    .sidebar_left .menu li:first-child a {
      border-top: 0;
    }

    Regards,
    Nikko

    in reply to: Custom CSS field for elements #711451

    Hey!

    Glad we could help :)

    Regards,
    Nikko

    in reply to: sidebar logo icons #711421

    Hi!

    I don’t think css we add on Quick CSS will actually make the site slowdown since it’s just a few several bytes. Try to replace this code above:

    #menu-sidebar-underholdning li a {
        border: 1px solid #e1e1e1;
        border-right: 0;
        border-left: 0;
        margin: 0 0 -1px;
        padding: 12px 16px !important;
        text-align: left;
    }
    
    #menu-sidebar-underholdning li:first-child a {
        border-top: 0;
    }

    To this one (this should work on other left sidebars):

    .sidebar_left .menu li a {
        border: 1px solid #e1e1e1;
        border-right: 0;
        border-left: 0;
        margin: 0 0 -1px;
        padding: 12px 16px !important;
        text-align: left;
    }
    
    .sidebar_left .menu li:first-child a {
        border-top: 0;
    }

    Hope this helps :)

    Regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Short separator differnetr colors #711420

    Hi!

    Just add the following codes in Quick CSS (located in Enfold > General Styling):

    The first one (in service section):

    .home #service .hr-short .hr-inner-style, 
    .home #service .hr-short .hr-inner {
        background-color: white;
        border-color: white;
    }

    The second one (in slider section):

    .home #slider .hr-short .hr-inner-style, 
    .home #slider .hr-short .hr-inner {
        background-color: black;
        border-color: black;
    }

    The third one (in service section):

    .home #revert .hr-short .hr-inner-style, 
    .home #revert .hr-short .hr-inner {
        background-color: orange;
        border-color: orange;
    }

    Just adjust the colors as you see fit. Hope this helps :)

    Regards,
    Nikko

    in reply to: Change demo logo #711419

    Hey Connecttomoon!

    I can see the logo on the top of your site, if I’m not mistaken you want the header to remain on top when you scroll and just reduce the size of the logo when scrolled? if this is right, you need to go to Enfold > Header > Behaviour Header (tab), check Sticky Header and Shrinking Header. Hope this helps :)

    Cheers!
    Nikko

    in reply to: Responsive background images #711417

    Hi diggital!

    Can you post a link to the page having that issue? Is the image you used as a background (just like Enfold Health Coach) or not? you can post the link in the “private content” so only moderators can see.

    Best regards,
    Nikko

    Hey zakthorpe,

    The thin border is from the image, try to replace the image with another image that has dark edges and check if the border still shows up.

    Best regards,
    Nikko

    in reply to: Deactative theme features not using #711409

    Hey AvenueQ,

    Unfortunately that option is not available in the theme. Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Nikko

    in reply to: Avia Layout Builder spinning and not working #711407

    Hi,

    Glad that you sorted it out :)

    Best regards,
    Nikko

    in reply to: Add a custom "loading" spinner icon #711406

    Hey Michael,

    You can check on this thread: https://kriesi.at/support/topic/change-preload-image-animation/

    Best regards,
    Nikko

    in reply to: Enfold Newsletter Sign Up #711405

    Hey sgwifi,

    Just use the Contact Form in Advance Layout Builder, when you edit the Email textfield, make sure to use 3/4 on Form Element Width. As for Contact Form 7, yes, you can also do it with that plugin you will just need to style it. :)

    Best regards,
    Nikko

    in reply to: Remove magazine element from blog page 2,3,4,… #711403

    Hey Poirot,

    Try adding this code to Quick CSS(located in Enfold > General Styling):

    .paged .av-magazine {
      display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: How to include the searchbox in the mobile menu ? #711402

    Hi,

    Try to add this code in functions.php:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    function avia_append_search_nav ( $items, $args )
    {
    
    		if ($args->theme_location == 'avia') {
    	        $search_form = get_search_form(false);
    			$items = '<li id="menu-item-searchbox">'.$search_form.'' . $items;
        	}
    		return $items;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Remove related items from protfolio #711401

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Problem with displaying Vimeo video #711400

    Hey Tarakbc,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Social Media Icons – Color Without Hover #711399

    Hey amatton,

    You can use this code snippets and add it to Quick CSS (located in Enfold > General Styling):

    Facebook Icon (2nd block of code is for hover):

    .responsive #top #header_meta .social_bookmarks li.av-social-link-facebook a {
        background: #000;
        color: #fff;
    }
    
    .responsive #top #header_meta .social_bookmarks li.av-social-link-facebook a:hover {
        background: #fff;
        color: #000;
    }

    Twitter Icon (2nd block of code is for hover):

    .responsive #top #header_meta .social_bookmarks li.av-social-link-twitter a {
        background: #000;
        color: #fff;
    }
    
    .responsive #top #header_meta .social_bookmarks li.av-social-link-twitter a:hover {
        background: #fff;
        color: #000;
    }

    Linkedin Icon (2nd block of code is for hover):

    .responsive #top #header_meta .social_bookmarks li.av-social-link-linkedin a {
        background: #000;
        color: #fff;
    }
    
    .responsive #top #header_meta .social_bookmarks li.av-social-link-linkedin a:hover {
        background: #fff;
        color: #000;
    }

    Google Plus Icon (2nd block of code is for hover):

    .responsive #top #header_meta .social_bookmarks li.av-social-link-gplus a {
        background: #000;
        color: #fff;
    }
    
    .responsive #top #header_meta .social_bookmarks li.av-social-link-gplus a:hover {
        background: #fff;
        color: #000;
    }

    Just adjust the colors as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Single triangle pointing down for fullwidth button. #711398

    Hi,

    You can check here on how to create a new ticket: https://kriesi.at/support/topic/how-to-create-a-ticket-in-the-support-section/
    Please open a new ticket since your question is unrelated to the topic.

    Best regards,
    Nikko

    Hey Eleina_Shinn,

    The slider is too short to show the buttons. We would like to help you with it, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Best regards,
    Nikko

    in reply to: button center sidebar widget #711396

    Hey eKMUch,

    I checked the sidebar buttons and it seems to be centered and the background color is white/transparent and black border. Is this already fixed? if not can you please post a screenshot?

    Best regards,
    Nikko

    in reply to: Changing color #711395

    Hey troupdim,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    #top #wrap_all .social_bookmarks a {
        background: #000;
        color: #fff;
    }

    You can also change the hover using this code:

    #top #wrap_all .social_bookmarks a:hover {
        background: #fff;
        color: #000;
    }

    Just adjust the colors as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Mega menu for mobile background and link styling changes #711394

    Hey!

    Can you post a screenshot on your iphone? I tried to check it with an emulator and Rikard’s code worked just fine.

    Cheers!
    Nikko

Viewing 30 posts - 24,721 through 24,750 (of 25,536 total)