Forum Replies Created

Viewing 30 posts - 13,351 through 13,380 (of 35,287 total)
  • Author
    Posts
  • in reply to: show avia elements for editors possible? #1336790

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Burger menu not working #1336787

    Hey ac1977,
    Please try disabling your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and then at the bottom of the same page enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    Then ensure Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled, and clear your browser cache and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: underline links #1336785

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: do not collapse columns #1336784

    Hey laptophobo,
    Please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth {
        width: 47%;
        float: left;
        margin-right: 3%;
    }
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.first {
        clear: none;
    }
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-9,
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-25,
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-33 {
        clear: both;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can't get Enfold installed #1336780

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: underline links #1336778

    Hi,
    Please try this instead:

    #main a:not(.avia-button), #footer a:not(.avia-button) {
        text-decoration: underline;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336777

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Button too big in blog page #1336774

    Hey rixi,
    Thank you for the link to your site, I see that the font size of the button is 24px due to this custom css:

    .avia-button span {
        font-size: 24px !important;
    }

    if you remove this the font size will go back to 13px and you button will be smaller.
    The letter spacing is due to this custom css:

    #top #wrap_all .avia-slideshow-button,#top .avia-button,.html_elegant-blog .more-link,.avia-slideshow-arrows a:before {
        padding-top: 20px;
        padding-bottom: 20px;
        letter-spacing: 0.36em
    }

    try removing #top .avia-button from the css, if there is a certain button you wanted to target with this css let us know and we can help correct your css.
    If you can’t find were to make these edits, include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: underline links #1336773

    Hey prerules,
    Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main a, #footer a {
        text-decoration: underline;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336772

    Hi,
    Thank you for the link to your site, please try this css instead:

    #top.single-portfolio .title_container {
    position: fixed;
    top: 82px;
    z-index: 1000;
    width: 100%;
    }
    #top.single-portfolio #sub_menu1 {
    top: 142px !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Changing the font of the button text also changing the size of the button, so for two different button sizes you could try this:

    @media only screen and (max-width: 767px) { 
    #top #main .avia-slideshow-button {
    	font-size: 12px;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top #main .avia-slideshow-button {
    	font-size: 20px;
    }
    }

    To have the button closer to the image in the caption H2, try this css:

    @media only screen and (max-width: 479px) {
    .responsive #top #main .slideshow_caption h2 {
        font-size: 0px !important;
        line-height: 0px;
        margin-bottom: 0px;
    }
    .responsive #top #main .slideshow_align_caption br {
    	display: none;
    }
    #top #main .avia-slideshow-button {
    	margin-top: 0px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Optimising Masonry Gallery #1336760

    Hi,
    Thank you for your patience, you had an error because you had the option Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer set, I disabled this setting and now the script works correctly.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: mobile view below 1024px #1336758

    Hi,
    You could try this css but you’ll want to examine each page to ensure there are no conflicts

    @media only screen and (max-width: 1023px) { 
    	#top .flex_column_table,
    	#top .flex_column_table_cell {
        display: block;
        width: 100%;
        margin-left: 0;
    	}
    }

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336757

    Hi,
    Please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: 'Hide on Mobile Devices' extend to tablet portrait size #1336752

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: mobile view below 1024px #1336751

    Hey PhatJ,
    Thank you for the link to your site, I assume that you only want the “TAKE A LOOK AROUND” section to convert from 3 columns to 1 below 1024px, so please try this css:

    @media only screen and (max-width: 1023px) { 
    	#top.home #av_section_3 .flex_column_table,
    	#top.home #av_section_3 .flex_column_table_cell {
        display: block;
        width: 100%;
        margin-left: 0;
    	}
    }

    please note that the first three 1/3 columns do not have a top margin set like the bottom three, so when the section is forced into a single column the first three columns have no space between them link the bottom three, please compare the settings and try to match. If you can’t I can add css to this solution to correct, if you wish.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: full width sub menu sticky at bottom of screen #1336749

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336748

    Hey Angelo,
    Please try this solution

    .title_container {
    position: fixed;
    top: 122px;
    z-index: 1000;
    width: 100%;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Changing the Menu Bar #1336743

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add a color section above the logo and menu area #1336741

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: shop page fully transparent #1336740

    Hi,
    Ok, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: shop page fully transparent #1336738

    Hi,
    Glad this helped, I believe that you are asking about setting your background image to “fixed” so it doesn’t move while the elements scroll over it, but there is a known bug in Safari that doesn’t support this on iPhones & iPads, Safari has known about this for a few years and doesn’t look like they are in a hurry to fix it.
    So with this in mind if you want to try this please include admin login in the Private Content area so we can adjust the precious background css, if not let us know that we can close this thread.

    Best regards,
    Mike

    in reply to: do not collapse partner logos on mobile view #1336737

    Hi,
    Glad we were able to help, and thanks for sharing your tweak, shall we close this then?

    Best regards,
    Mike

    in reply to: full width sub menu sticky at bottom of screen #1336736

    Hi,
    Thank you for the link to your site, try adding this css:

    #top #main #sub_menu1 .av-subnav-menu > li ul {
        bottom: 70px;
        top: unset;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: full width sub menu sticky at bottom of screen #1336694

    Hey PhatJ,
    Unfortunately this is not a feature, but if you want to use only one submenu on a page and don’t enable the “sticky” option
    2022-01-22_011.jpg
    you can use this css to stick the menu to the bottom of the page:

    #top #main #sub_menu1 {
    	bottom: 0vh;
        position: fixed;
    }
    

    2022-01-22_012.jpg
    example page linked below

    Best regards,
    Mike

    in reply to: Burger Menu not showing in Safari on iPad #1336691

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: do not collapse partner logos on mobile view #1336690

    Hey laptophobo,
    Thanks for the link to your page, please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #program-highlights .avia-content-slider-odd .no_margin.av_one_third.slide-entry.first,
    .responsive #top #wrap_all #program-highlights .avia-content-slider-odd .no_margin.av_one_third {
        width: 33.3%;
        clear: none;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Polylang support #1336688

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Gallery problem, all posts lie on top of each other #1336687

    Hi,
    Please try disabling your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and then at the bottom of the same page enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    Then disable your plugins and clear your browser cache and check again, if the issue is resolved, enable your plugins one at a time until the error shows again and note that plugin as the conflict, I believe that it is probably your smush lazy load but it could be another.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

Viewing 30 posts - 13,351 through 13,380 (of 35,287 total)