Forum Replies Created

Viewing 30 posts - 5,491 through 5,520 (of 34,996 total)
  • Author
    Posts
  • in reply to: Duplicated Burger Icon and more padding to each nav item #1422469

    Hi,
    I believe that I have achieved what you wished for, but I had to change the break point to 1024px instead of 992px, this is the current css:

    
    @media only screen and (min-width: 767px) and (max-width: 1023px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main.menu-item-avia-special  {
          cursor: pointer;
          display: block!important;
      }
      .html_header_top .av_bottom_nav_header .av-logo-container .main_menu {
        display: block !important;
    }
      #top #header_main_alternate {
    	 display: none;
    }
    #top #header .av-main-nav > li > a {
      	background-color: transparent !important;
      }
      .html_header_top #top .av_menu_left .main_menu {
        right: 20% !important;
        left: auto !important;
      }
    }
    @media only screen and (min-width: 1024px) { 
    .html_header_top.html_bottom_nav_header #top #header_main_alternate .main_menu .menu-item-search-dropdown {
    	float: left;
        width: 45px;
    }
    .html_bottom_nav_header #top #header_main #menu-item-search>a {
        padding-right: 13px;
    }
    .main_menu {
        display: flex;
        align-items: center;
    }
    .avia-menu>ul.av-main-nav {
        margin: 0;
        display: flex;
        justify-content: space-around;
        position: relative;
    }
    .avia-menu>ul.av-main-nav li {
        display: flex;
        flex-grow: 1;
        justify-content: center;
    }
    #top #header .av-main-nav > li:hover {
        background-color: #776fb1;
        transition: background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out;
    }
    .avia-menu>ul.av-main-nav .av-burger-menu-main.menu-item-avia-special {
    	display: none;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Navigation Background Not Loading #1422463

    Hi,
    If you want it to work on every page except home, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead:

    #top:not(.home) #header_main {
    height: 170px;
        background: url(https://campfire-sunshine.org/wp-content/themes/CampFireCouncilTheme/images/header-small.jpg) no-repeat center top;
        background-size: cover;
    }

    It looks like you have added some custom css to add 65px margin-top to the menu items, please remove this:
    Enfold_Support_3680.jpeg
    The same css is also adding 65px margin-top to the logo, but you should remove your css and use this instead:

    .logo a img {
        border: none;
        margin-top: 46px !important;
        margin: 0;
        display: inline-block;
        max-width: 100%;
    }
    #menu-item-8170 {
         margin-top: 20px;
    }

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

    Best regards,
    Mike

    in reply to: html in exerpts does not work #1422460

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Change color and form of bullet points #1422435

    Hi,
    Try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .entry-content-wrapper ul.av-share-box-list li {
        text-indent: 0;
    }

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

    Best regards,
    Mike

    in reply to: Tags problem and other #1422432

    Hi,
    Thanks but I don’t find the icon file 2635055-textiles.zip in your media library, or any .zip files, and you didn’t link you it above. Please upload it to the media library so we can examine.
    To change the color of 中文 on hover, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-174 > a:hover .avia-menu-text {
    	color: #000;
    }
    

    to remove this text:
    Enfold_Support_3672.jpeg
    go to your widgets and click edit image:
    Enfold_Support_3674.jpeg
    then remove the caption and save:
    Enfold_Support_3676.jpeg
    I did it for your first one, please try for your others:
    Enfold_Support_3678.jpeg
    To remove “Enfold Theme by Kriesi” please see our documentation here ▸ Copyrights info and add this [nolink] to Enfold Theme Options ▸ Footer ▸ Copyright

    Best regards,
    Mike

    in reply to: Background image in Color Section not always working #1422408

    Hi,
    The background image and color is inserted via css, so I’m not sure why this specific css is not loaded when your client sees the error, perhaps they are on a slow mobile network or they have data saver turned on, or perhaps it is an older IOS device that didn’t work with parallax.
    Nonetheless assuming that all other css is loaded perhaps this would be a good workaround:

    .avia-section .av-parallax-inner.alternate_color {
    	background-color: #000;
    }

    In my test if the background image and color is disabled this will override the alternate_color and bake it black.
    If you are concerned about this causing a conflict with other sections you can add a custom class to the color section and adjust the css like this:

    .avia-section.custom-class .av-parallax-inner.alternate_color {
    	background-color: #000;
    }

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

    Best regards,
    Mike

    in reply to: Small bar above main menu – color change #1422406

    Hi,
    Glad Ismael 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: Change color and form of bullet points #1422405

    Hey Sabine,
    Thank you for the link to your site, as I understand the only issue is that your hearts are also showing in the footer for the social icons.
    To fix this please change your css:

    .entry-content-wrapper ul li:before {
    content: “♥”;
    padding-right: 5px;
    color: #f39681 !important;
    }

    to this:

    .entry-content-wrapper ul:not(.av-share-box-list) li:before {
        content: "♥";
        padding-right: 5px;
        color: #f39681 !important;
    }

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

    Best regards,
    Mike

    in reply to: Tags problem and other #1422399

    Hi,
    Thanks for the link to your site, but I didn’t fint the icon font zip file in your media library so I could examine, please upload it or link to it via DropBox.

    Best regards,
    Mike

    in reply to: Screen problems #1422397

    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

    Hey djcopywriter,
    Thank you for the link to your site, but unfortunately I was not able to login with the password.
    I did find a jQuery error on your site because you are using #rules# in a menu item, the ending hashtag is causing the error, please remove.
    If you still need more help, please check the login password so we can login.
    Enfold_Support_3670.jpeg

    Best regards,
    Mike

    in reply to: Headline Rotator – background-color for rotating text #1422279

    Hi,
    Glad Ismael 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: Change Main Menu Hover #1422278

    Hey Sryde,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-main-nav li:hover .avia-menu-fx, 
    .av-main-nav li .avia-menu-fx,
    .current-menu-item > a > .avia-menu-fx, 
    .av-main-nav li:hover .current_page_item > a > .avia-menu-fx {
    	top: 0;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Lottie file on mobile #1422262

    Hi,
    Thanks for your question, for mobile to have the Lottie animation play only once whe it comes into the viewpoint, try adjusting the player settings like this:
    Enfold_Support_3668.jpeg
    I have tested this on my test site and it works correct as long as you have some content before the file so scrolling is needed to view the file:
    Enfold_Support_3666.jpeg
    that play on hover won’t work for mobile devices because they don’t have a hover state.
    Please give this a try.

    Best regards,
    Mike

    in reply to: Tags problem and other #1422261

    Hi,
    Unfortunately I was not able to login I get this error: Error: The username wlhcome is not registered on this site please check.
    Please check that your server has the PHP ZipArchive Extension enabled, this is required so the site can extract zip files, this typically is enabled by default but when it is not it is a common reason for the error.

    Best regards,
    Mike

    in reply to: Duplicated Burger Icon and more padding to each nav item #1422259

    Hi,
    To correct this try changing the menu width from 14.25% to 13.25% and the padding from zero to 10px left and right. originally I set the padding to zero so you could have a larger font, so by adding the padding below 992px you will need to also reduce the font size so “Get Involved” will fit on one line. It looks like a font size of 14px will fit.
    Please try making this adjustment, or adjusting slightly more. Otherwise feel free to include an admin login in the Private Content area below.
    Enfold_Support_3660.jpeg
    Enfold_Support_3662.jpeg

    Best regards,
    Mike

    in reply to: Tab Section is not working on Mobile #1422256

    Hey vancestone,
    Thanks for your patience and the link to your site, I checked all of the links under the “Our Services” menu item, but I didn’t fine a page with a tab section, please link directly to the page with the element and perhaps a screenshot of the issue would help.

    Best regards,
    Mike

    in reply to: Disable Google Fonts #1422255

    Hi,
    Thanks for your patience, the first site was not an admin login so I couldn’t examine, but the issue with the second site was you newsletter plugin which is showing a widget in the footer, disabling the plugin solves the google font, I re-enabled it, but I recommend asking the plugin author how to avoid the google connection within their plugin.
    If you are using the same plugin on your first site then this is probably also the issue with it, if not try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Hiding extra elements on mobiles #1422227

    Hi,
    Glad Ismael 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: Social media icons in the mobile version #1422226

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-team-member .team-img-container {
    	border-radius: 0;
    }

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

    Best regards,
    Mike

    in reply to: html in exerpts does not work #1422224

    Hi,
    Thank you Guenni007, I don’t see any errors either.
    xeovision, has this been resolved?

    Best regards,
    Mike

    in reply to: Malware found in files #1422222

    Hi,
    It sounds like the PHP setting needs to be changed somewhere else, each server can be a little different so you should ask your webhost to help.

    Best regards,
    Mike

    in reply to: Mouse Hower effect #1422221

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Screen problems #1422219

    Hi,
    It seems that the two frontpages that you created for the two languages are named the same, and may have been selected incorrectly for the language, I seem to have sorted in out now, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mouse Hower effect #1422160

    Hi,
    Glad this helped, I changed the css color to white for you:
    Enfold_Support_3656.jpeg
    unless there is anything else we can help with on this issue, shall we close this thread then?
    Thanks to Guenni007 for the great help!

    Best regards,
    Mike

    in reply to: Margins unmanageable: code somewhere ? #1422159

    Hi,
    Thank you for your patience, I checked the IT homepage for mobile and found the large space under the first H2 is caused by the top margin for the special heading below it, caused by some custom css:
    Enfold_Support_3652.jpeg
    so I found the css and disabled it for you:
    Enfold_Support_3654.jpeg
    On your FR site the space after the second H2 separator I added this css:

    #top.home #after_section_3 > .container > .content {
    	padding: 0;
    }
    .responsive #top.home #wrap_all #after_section_3 .flex_column {
    	margin-bottom: 0;
    }

    and this seems to have corrected, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Plugin Encyclopedia – exclude rendering from Enfold #1422158

    Hi,
    I received feedback from the Dev Team that suggests to try the different blog layouts at Enfold Theme Options ▸ Blog Layout and see if that gives you the result that you are looking for. I tried the plugin with the default WP theme but I couldn’t get it to work correctly, from the WP Plugin page the demo links all seem to be examples of the pro version on customer sites with modifications, I don’t see a basic example of the lite version showing it “out of the box”, the documentation seems to say that for the filter to show you need to use tags and categories, but the category field doesn’t show even in the WP default theme, so perhaps this is a pro only option, I’m not sure the plugin page is not clear. I have been advised to not spend too much time on this as it is outside of our support scope. Unfortunately I don’t have a solution for this plugin with either the WP default theme or with Enfold. Sorry I was not more help.

    Best regards,
    Mike

    in reply to: Mouse Hower effect #1422118

    Hi,
    Very good, so above your wrote:

    In portrait format everything is displayed as I wanted, in landscape format it doesn’t work yet. The tablet I’m looking at has the dimensions 810×1080,

    So I changed the media query to a max width of 1085px so it will now work on your device in landscape.
    But you asked for this to also works on “Din A4 iPads” can you use the screen resolution tool and tell us the screen width so we can adjust further?

    Best regards,
    Mike

    in reply to: Social media icon colour in header #1422114

    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: Add H1 heading to category/archive pages only. #1422065

    Hi,
    Glad to hear that you have this sorted out, shall we close this thread then?

    Best regards,
    Mike

Viewing 30 posts - 5,491 through 5,520 (of 34,996 total)