Forum Replies Created

Viewing 30 posts - 25,501 through 25,530 (of 25,536 total)
  • Author
    Posts
  • Hi premedia!

    When you enable Advanced Layout Builder, automatically it will not use the default layout which is Content-left Sidebar-right, What it uses now whole or the fullwidth with no sidebar, if you want to use the layout builder and have the same look and feel, you need to use 2/3 for content and 1/3 for the sidebar in the layout content, then put all content in the 2/3 layout then in the 1/3 layout choose widget area and choose sidebar. I hope you found this answer helpful. :)

    Best regards,
    Nikko

    in reply to: CONTROL POSITION SUBMENU #701102

    Hi mleite1!

    Can you try to add this code on Quick CSS (under Enfold > General Styling):

    #avia-menu ul.sub-menu {
        top: -50px;
    }
    
    .header-scrolled #avia-menu ul.sub-menu {
        top: 100%;
    }

    Just adjust the -50px as you see fit. Hope this helps. :)

    Cheers!
    Nikko

    Hey pmfonseca!

    Everything seems to be good and working fine on the links you have given, can you give us specific details on what is wrong on the pages you posted in the private content?

    Regards,
    Nikko

    in reply to: text-conflict in the blog! #701093

    Hi Nicolleta,

    Can you try to add this code inside the code given by Rikard:
    display: block;

    it should look like this:

    h3.slide-entry-title a {
        word-break: break-all;
        display: block;
    }

    This issue appears on firefox but not on chrome. Please let us know if this is fixed on your end as well :)

    Cheers!
    Nikko

    in reply to: Adapt Header Size for Mobile #701090

    Hi Corina!

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

    @media only screen and (max-width:767px) {
      .page-id-16 #av_section_1 h1.av-special-heading-tag {
        font-size: 32px !important;
        padding-bottom: 40px;
      }
    }

    Just change the values of font-size(size of text) and padding (positioning). Hope this helps :)
    Regards,
    Nikko

    in reply to: Responsive Column for Table Portrait #701083

    Hi jaroljmek!

    Can you give us a link to the page where you have those 3 columns that you want to be 1 column when shown in tablet portrait mode? then we can give you the exact solution. :)

    Regards,
    Nikko

    in reply to: Problem with pictures #701079

    Hi!

    Is there any error? Can you give us a link to your site and temporary admin access? so we can inspect further. Just place the details in the Private Content section in your reply.

    Regards,
    Nikko

    in reply to: secondary menu color #701069

    Hi,

    The secondary is black and visible (Mijn account, Winkelwagen). Is this fixed? if it’s not please post a screenshot.

    Best regards,
    Nikko

    in reply to: Fullwith Slider Image Resolution #701066

    Hey Viramedia,

    I don’t think the resolution decreased because of the fullscreen slider, I have tested the slider and doesn’t reduce the quality. The one in the slider is not the original image you have uploaded, you can see the difference in quality below:

    Image Used in the slider: http://i1.wp.com/viramedia.de/wp-content/uploads/2016/05/Knaus-Weinsberg-der-perfekte-Moment-13.jpg?fit=1500%2C750

    Original Image: http://i1.wp.com/viramedia.de/wp-content/uploads/2016/05/Knaus-Weinsberg-der-perfekte-Moment-13.jpg

    Can you give us temporary admin access so we can inspect further? just post it in the Private section in your reply.

    Best regards,
    Nikko

    in reply to: The settings appear incorrectly (enfold) #701062

    Hey Mickyhood,

    Can you try to disable all plugins? and tell us if the problem still persists.
    Best regards,
    Nikko

    in reply to: Increase Caption Text Font Size #701059

    Hey Antonio,

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

    .awesome-weather-more-weather-link, .awesome-weather-more-weather-link a, .awesome-weather-attribution {
        font-size: 15px !important;
        font-weight: 400;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Sidebar on single product page #701052

    Hi Elen,

    Kindly add this code in Quick CSS (located in General Styling):

    @media only screen and (max-width:767px) {
    	div .product {
    	    width: 100% !important;
    	    float: none !important;
    	}
    
    	.responsive #top.single-product #main .sidebar {
    	    display: block !important;
    	    width: 100%;
    	}
    }

    This will fix the gap on the left and will display the sidebar (though it will appear on top instead).

    Best regards,
    Nikko

    in reply to: Mega Menu on iPad not closing *URGENT* #701042

    Hi shardie,

    After Opening the mega menu (Our Work) try tapping on the black section, either the space on the right side after the Contact button or the space on the left side before the logo and it should close the mega menu. The problem I think is the slider images at the back are linked and the only option you have to close it is on the areas I have mentioned.

    Best regards,
    Nikko

    in reply to: Disable all animations? #701038

    Hi,

    Can you provide a temporary admin access and login link? just post the details in the Private Content section of your reply.

    Best regards,
    Nikko

    in reply to: Extra whitespace in Avia text editor #701001

    Hey webprodigy,

    You will need to enable Custom Css Class to add space on the text element editor. Go to Appearance > Editor and open functions.php and find this code:
    // add_theme_support(‘avia_template_builder_custom_css’);
    and replace it with
    add_theme_support(‘avia_template_builder_custom_css’);
    then save it.

    Edit the text element editor and at the bottom you should see Custom Css Class add this in it: webp-text and Save

    Then Go to Enfold (Theme Options) > General Styling > Custom CSS and add this code:

    .webp-text {
        padding-top: 30px;
    }

    if it doesn’t work try this instead:

    .webp-text {
        padding-top: 30px !important;
    }

    You can change the value of 30px as you see fit and if you want to add space in the bottom you can change padding-top to padding-bottom. Hope this helps. :)

    Best regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko. Reason: formatting
    in reply to: header issue on tablet #700994

    Hi,

    It’s possible and it should be fixed now, I have added this code in your Quick CSS:

    @media only screen and (max-width:1024px) {
        #header .logo {
            filter: alpha(opacity=0);
            opacity: 0;
            -webkit-transition: opacity 1s ease-in-out;
            -moz-transition: opacity 1s ease-in-out;
            -ms-transition: opacity 1s ease-in-out;
            -o-transition: opacity 1s ease-in-out;
            transition: opacity 1s ease-in-out;
        }
        #header.av_header_transparency .logo {
            filter: alpha(opacity=1);
            opacity: 1;
        }
    }
    

    Please let us know if this fixed it on your end also :)

    Best regards,
    Nikko

    in reply to: Google API Not Working #700988

    Hey fulanoinc,

    Kindly follow the instructions here, it should fix the issue: http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/

    Best regards,
    Nikko

    in reply to: menu links not scrolling properly to anchors #700980

    Hi Karen,

    Seems like this is a bug when using Logo Center, Menu Above on a One-page website , I have replicated this issue on my end, for the meantime in Enfold Child > Header > Menu and Logo Position > can you set it to Logo Center, Menu Below until the issue will be fixed probably in the next theme update.

    Best regards,
    Nikko

    in reply to: CSS for changing font size on Woocommerce checkout page #700975

    Hey jonathan_lees,

    Can you give us a link and also login access? so we can inspect further. Just post the details in the Private Content section of your reply.

    Best regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.

    Hi Elsa,

    I have reduced the height of the popup window by adding this in your Quick CSS:

    .wcv-modal {
        height: 60% !important;
    }

    Hope this helps. :)

    Regards,
    Nikko

    Hey KK,

    Can you give us a link on on your page showing both images above? so we can test it further.

    Best regards,
    Nikko

    Hi Elsa,

    I tried to check the link above: http://www.bemvestir.moda/painel_do_vendedor/order/ using the account you made but it only shows this message: Administradores não podem ser vendedores.

    I have also created a customer account Kriesi99 and tried to shop a bit and check the link but it returns: O seu pedido foi recebido. Brevemente será notificado por e-mail.

    Can you create an account? where we can see the table same as the one posted in the screenshot you provided. Hopefully we can help you with the issue.

    Best regards,
    Nikko

    in reply to: Posting a support question #700550

    Hi Rob,

    I have logged in and added this code in your Quick CSS:

    #top #header_main_alternate, 
    #top #header .av-main-nav > li > a {
        background-color: #11abd6 !important;
    }
    
    #top #header .av-main-nav > li > a, #top #wrap_all #header #menu-item-search>a {
        border-color: #1f8cab !important;
    }

    The code is same as above but with the !important which will force the color not to be overridden by any css. Please change the background and border colors as you see fit. Hope this helps out.

    Best regards,
    Nikko Ayag

    in reply to: Grid Row Anordnung und Priorität auf Handys #700542

    Hi MaktubJolie ,

    Glad that I could help :)

    Best regards,
    Nikko Ayag

    in reply to: Tables Not working properly #700538

    Hi akaracing,

    Kindly add this code snippet to Quick CSS (under Enfold Theme Options > General Styling):

    .home .avia-table {
        width: auto;
    }

    if it doesn’t work try replace the code with this:

    .home .avia-table {
        width: auto !important;
    }

    If this works, I can definitely say it’s safe to use the latest version without the table breaking, if there are still any issues please let us know :)

    Best regards,
    Nikko Ayag

    Hey!

    Glad that it worked out :)

    Regards,
    Nikko

    in reply to: Color from Buttons spilling into submenu #700468

    Hi j-keogh,

    Kindly replace this code:

    #menu-item-3194 a span {
    background-color: #green ;
    color:white;
    }

    with this one:

    #menu-item-3194 > a > span {
    background-color: #green ;
    color:white;
    }

    You will notice that I just added > in between this will target only the main menu links/buttons but not the dropdowns. Hope this is helpful :)

    Best regards,
    Nikko Ayag

    in reply to: Posting a support question #700440

    Hi Rob,

    Kindly add this to Quick CSS:
    This code is to change the black background color on the top where the main menu lies

    #top #header_main_alternate, 
    #top #header .av-main-nav > li > a {
        background-color: #11abd6;
    }

    Also add this code, this is for the color of the border for the main menu and also the search icon:

    #top #header .av-main-nav > li > a, #top #wrap_all #header #menu-item-search>a {
        border-color: #1f8cab;
    }

    I hope you find this answer helpful. :)

    Best regards,
    Nikko Ayag

    in reply to: Effect hover on Masonry Gallery and Masonry Portfolio #700427

    Hi Emma,

    Kindly add this css code:

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content:hover {
        background: transparent;
    }

    if it doesn’t work try this one instead:

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content:hover {
        background: transparent !important;
    }

    Hope this helps :)

    Best regards,
    Nikko Ayag

    in reply to: Small bar above menu Link color transparent header #700421

    Hi Webigami,

    Just to correct the code above, that’s why only the phone info is working:

    .phone-info {<br>
    font-size: 13px;<br>
    .sub_menu font-size: 15px !important;<br>
    }

    replace it with:

    .phone-info {
        font-size: 13px;
    }
    .sub_menu {
        font-size: 15px !important;
    }

    As for the color you might want to try this code snippet:

    #header_meta #avia2-menu li a {
        color: #00f !important;
    }

    just replace #00f with any color you want. :)

    Regards,
    Nikko

Viewing 30 posts - 25,501 through 25,530 (of 25,536 total)