Forum Replies Created

Viewing 30 posts - 23,401 through 23,430 (of 35,204 total)
  • Author
    Posts
  • in reply to: Timeline / How can I change the size of the icon-circle? #1059254

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-timeline .milestone_icon i {
    font-size: 80px !important;
    }

    Best regards,
    Mike

    in reply to: Special Heading Formating #1059248

    Hey prana_aok,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-31 .av-special-heading h3.av-special-heading-tag {
    font-weight: bolder !important;
    }
    #top.page-id-31 .av-special-heading .av-subheading_below p {
    font-style: italic !important; 
    }

    Best regards,
    Mike

    Hey Antonio,
    Thanks for the login, the links to anchors need to be lower case, I corrected this for you.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: I solved the FTP problem. THANKS! #1059238

    Hey Lambrosgi,
    That’s great news! Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Make Icon change color on hover #1059236

    Hi,
    For your icon buttons, we can create many types of hover effects, please see these examples or these.
    I thought that having colors invert and pulse & grow a little might be nice.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-3645 .av-icon-char:hover {
        background: #186F00;
        color: #fff !important;
        -webkit-animation: pulse ease-in-out 2s infinite;
        border-radius: 50%;
    }
    @-webkit-keyframes pulse {
        0% {
            -webkit-transform: scale(1);
        }
        51% {
            -webkit-transform: scale(1.1);
        }
        100% {
            -webkit-transform: scale(1);
        }
    }
    

    this css will only work on the test page so it won’t interfere with other pages, please let us know if you would like to use it on a different page.

    Best regards,
    Mike

    in reply to: Timeline / How can I change the size of the icon-circle? #1059228

    Hey Carsten,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-timeline .milestone_icon {
        height: 90px !important; 
        width: 90px !important; 
        line-height: 90px !important; 
    }

    Please change all 3 to the same size, the 90px is the default.
    If this doesn’t help please include the url to the page in question so we can take a closer look, and tell us what size.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can't update from 4.5 to 4.5.2 #1059223

    Hi,
    Please note that your error message is: The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.
    Please check your file permissions, here’s a good article explaining how: How to Fix File and Folder Permissions Error in WordPress

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1059211

    Hi,
    I see, the original code that I posted took into account all of the categories, but you page is not using all of the categories so that was giving the error.
    You edit is working correctly for your situation, well done.

    Best regards,
    Mike

    Hi,
    I took the screenshot from your site, so I do see it.
    Perhaps the new “block editor” has a new shortcut key to hide this in your browser?
    Try going the theme options and change to the “Classic Editor” and see if your see it,
    2019-01-14-064632
    if not then go to the “screen options” at the top of your page to enable it:
    2019-01-19-172416

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1059202

    Hi,
    All questions are good questions, it’s how I learned :)
    I believe the biggest issue is “cache”, I recommend disabling all cache while you are building, so no cache plugin, theme file merging, and use the Quick CSS or WordPress Additional CSS for all testing. I have come to like the WordPress Additional CSS best, because it has priority. Once your site is done then you can move all the css to the child theme style.css and start using caching.
    Also when testing, I find that doing a “hard refresh” in Chrome makes all the difference, this is done by hitting F12 to switch to the dev tools and the right click on the refresh button and choose the “Empty cache and Hard Reload
    hard-reload
    but sometimes I still need to do it twice :|

    I like using the Custom Stylesheet & Script addon.
    2019-01-26-104151
    you can see the results without worrying about cache, so you’ll know if the error is the code or not. There are other ones, this is just the one I like.
    Hope this helps :)

    Best regards,
    Mike

    in reply to: elements on website no longer displaying #1059192

    Hi,
    That is great news! I found an error in your css, but I couldn’t reproduce on my localhost, so sorry for the inconvenience but I don’t expect that this will occur again.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Image Sitemap Problem #1059171

    Hi,
    You will only need to reload the site map, that is refresh the page: /sitemap_index.xml
    Here are some before and after screenshots of my localhost sitemap:
    Before:
    before
    After:
    after
    This is the code I added to the end of my child theme functions.php file in Appearance > Editor:

    Best regards,
    Mike

    in reply to: Error updating to new theme version #1059164

    Hi,
    I didn’t get it, so to login it’s “2 factor auth”?
    You may have better luck asking your digitalocean support to change the file permissions for you (un-block) because most likely it will take their level of permissions to do so.

    Best regards,
    Mike

    in reply to: Avia codeblock not working in Spanish home page #1059153

    Hi,
    The reason HomeEsp is not loading, is because you have a “Forbidden 403” error, on admin-ajax.php
    this could be a file permissions issue, or a firewall blocking access, please try these steps
    Let us know what you find.

    You also have a few other errors from the plugin /Pedego-config/ and /pirate-forms/
    2019-01-26-085937

    Best regards,
    Mike

    in reply to: elements on website no longer displaying #1059027

    Hi,
    Sorry for the late reply, I took a look at your site and made an adjustment,
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1059018

    Hi,
    Glad to hear, the images was not a cache this time, it was a animation getting stuck, it could be a plugin or script, I’m not sure, but this seems to solve it. I didn’t see any other issues, but please let us know if you see this again.

    Best regards,
    Mike

    in reply to: Custom avia.js in child theme #1059013

    Hi,
    The only way to dequeue a script is that it was enqueue first, but you also need to hook into wp_print_scripts so that it is loaded last, after the script was enqueued. You are hooking into wp_enqueue_scripts
    So you are right, it is loading both, but then dequeue the theme one and running the custom one.
    Typically people have a problem getting their custom avia.js to work, until we recommend this function, please see the links to the Codex.
    I search and found a different solution for you, please see if this is satisfactory
    Here is a technical answer from the dev team.

    Best regards,
    Mike

    in reply to: Custom CSS for pricing table #1059005

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    I took another look at your page and first I found a jQuery error on your /baep/ in the “Hand” logo at the bottom of the page, the link in the “hand” had a “#” brfore the http like this:

    <a href="#http://your-site.com/#produkte">Produkte</a>

    so keep an eye out for this as I see you have these “hand” logo in many places.
    To solve the links going back to /produkte/ from /baep/ & /spy08/ I edited the likes going to /produkte/
    I added the class needed to use the “Page scroll to id” plugin and added an offset of -100px by simply adding this to the link:

    class="ps2id" data-ps2id-offset="-100"

    like this:

    <a class="ps2id" data-ps2id-offset="-100" href="http://your-site.com/#produkte">Produkte</a>

    clearing the browser cache helps.
    Please look at the two I did for you in the editor “text” mode so you can see the code, then give this a try for your other links. Also feel free to adjust the offset more if you like, I was not sure how high you wanted the page to land.

    For the sticky menu not sticky, please try replacing this “menu.js” at:
    /enfold/config-templatebuilder/avia-shortcodes/menu/menu.js
    see file in Private Content area.

    I don’t see that your layer slider has a white line, what OS & browser are you using, can you include a screenshot?

    Best regards,
    Mike

    Hi,
    You said right WordPress column, right?
    2019-01-25-202509
    the red box in this screenshot?

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1058980

    Hi,
    Glad to hear this worked for you, as for the flat rate, please see this video, it explains very well.
    I fixed your images, seems the animation was not working quite right.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1058973

    Hi,
    I took a look at your page, and the posts change position with every page load, and seems to be random. So do you mean that this is working fine now?
    I looked at your ajax search, and the only thing I could see wrong is that the images are a little smaller in the drop down preview, is this the error that you see?

    Best regards,
    Mike

    in reply to: Tab Section – increase space for tab title #1058964

    Hi,
    Glad to hear that you solved the anchor problem with KRYPTO, do you mind explaining what you found? Just because it eluded me for so long I’d like to know what I missed.
    Did you decide not to use the other site and menu? It looks like we are starting over with a different menu?

    Best regards,
    Mike

    in reply to: Tab Section – increase space for tab title #1058505

    Hi,
    The “News” header is “Transparent header with frame”
    2019-01-24-225609
    The “KONTAKT” header is “No transparency”
    2019-01-24-225835
    Please choose matching header options for both pages to match.
    I corrected the submenu items IMPRESSUM und DATENSCHUTZ under KONTAKT

    For mobile menu I created the highlighting you asked for, Please clear your browser cache and check.

    While working on the highlighting for the mobile menu, I discovered that at the screen width that the slider changes the image the menu creates an error as if the ID for KRYPTOWÄHRUNG is hit, I believe that this is related to the scroll error and the original anchor error with KRYPTOWÄHRUNG. I don’t know your slider plugin very well, so can you look in the slider for any hash tags or ID’s or links that are in your slider layers, or titles. Please see the screenshot of the one causing the error. We could solve a lot of issues if we find it.
    Otherwise I can write some css to solve this mobile menu error, but not for the full size menu early scroll down error.

    Best regards,
    Mike

    Hey anma,
    If you are using Enfold v3.5.3 with WP v5.0.3, you will need to update the theme, I believe the reason your site went down after updating was because it sounds like your tried to overwrite the theme folder. This will leave old files behind and cause errors.
    Please try to delete the old folder via FTP and then upload the new folder with the same folder name.

    Best regards,
    Mike

    in reply to: Custom avia.js in child theme #1058445

    Hi,
    wp_dequeue_script removes the theme js before wp_enqueue_script adds the child theme js.
    What is the function you are using, I would like to test it.

    Best regards,
    Mike

    in reply to: Hide social share buttons #1058443

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,

    Thanks for the login, I went to investigate your issue but I got the error:

    Grobi bearbeitet diesen Beitrag bereits. Möchtest du übernehmen?
    Grobi is already working on this post. Do you want to take over?

    I didn’t want to mess you up, is it ok to “take over” also I assume that you have tested deactivating your plugins, but can we also test this too?

    I also see that you are using Enfold v4.4.1, please update to v4.5.2, it would be good to rule out any version errors, Thanks.

    Best regards,
    Mike

    in reply to: Tab Section – increase space for tab title #1058170

    Hi,
    I made an adjustment to the menu items for “News” & “Kontakt” so now they stay highlighted when scrolling down.
    The “team” was white on white so I added your blue to it, let me know if it’s ok.
    Please clear your browser cache and check.

    “Home” was causing some trouble with the other menu items, it wants to always be on, I will try to work on it some more.

    For the mobile menu, sorry I misunderstood, so what color do you want the “News” & “team” & “Kontakt” menu color? Then are all white right now, if not a color I think we can add the line under the active mobile menu item.

    But please note that for the other mobile menu items: you have to scroll to the top of the page to see the mobile menu, so “CBCI-SYSTEM” “WIE WIR ARBEITEN” & “KRYPTOWÄHRUNGEN” can’t highlight, because you will always be at the top.

    Best regards,
    Mike

    Hey empiread201,
    I took a look at your page and wrote this css to make the font size smaller and reduce the padding around the caption for medium screens. You can adjust to suit your needs. But for it to work best you should remove some of your css because I rewrote it with a media queries to control when it triggers.
    Please remove this from your child theme css:

    /*---Masonry Gallery----*/
    #top #wrap_all figcaption.av-inner-masonry-content .av-masonry-entry-title {
        color: #f05a1a;
        text-align: center;
        font-weight: bold;
        font-size: 16px !important;
    }

    Then add this css:

    @media only screen and (min-width: 998px) {
    #top.home #wrap_all .av-masonry-col-5 figcaption.av-inner-masonry-content .av-masonry-entry-title {
        color: #f05a1a;
        text-align: center;
        font-weight: bold;
        font-size: 16px !important;
    }
    #top.home .av-masonry-col-5 .av-masonry-entry .av-inner-masonry-content {
        padding: 10px !important; 
    }
    } 
    @media only screen and (max-width: 997px) { 
    #top.home #wrap_all .av-masonry-col-5 figcaption.av-inner-masonry-content .av-masonry-entry-title {
        font-size: 8px !important;
    }
    #top.home .av-masonry-col-5 .av-masonry-entry .av-inner-masonry-content {
        padding: 4px !important; 
    }
    }

    Then Please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 23,401 through 23,430 (of 35,204 total)