Forum Replies Created

Viewing 30 posts - 19,621 through 19,650 (of 35,064 total)
  • Author
    Posts
  • in reply to: Change icon box font size on one particular page. #1145607

    Hi,
    Sorry for the late reply, thanks for the login, if I understand correctly you should add a custom class to your element such as “gf-icon-box” and then use the css Jordan gave you with the custom class like:

    .gf-icon-box h3.iconbox_content_title{
    font-size:10px!important;
    }

    then this would work wherever it was posted. Please note have the custom class for the element is all lowercase letters and there is no preceding dot, but in the css there is a preceding dot.
    The page you linked to above returned a 404 so I couldn’t demonstrate. Sorry but I can’t help with your CPTUI questions, I’m not that sure with it.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, and thanks for the login. I don’t see the hash (#) in your headline rotator, were you able to correct this?
    Is “Home” & “Home2” the same? I see in your WordPress > Settings > General > Homepage “Home” is chosen, but in Enfold Theme Options > Homepage “Home2” is chosen. This probably is not a big deal, but we should pick the same just to rule out any conflicts. Which one do you want to use? I would then test on the other page because I don’t want to lose your whole page as you said was happening.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, the first time I loaded your site I saw the missing font icons, but after that the icons were working fine.
    Perhaps this was just a hiccup from your server? Please try clearing your browser cache and checking again.

    If you still have issues then please note that your PHP version is 5.4.45-0 is too old now and needs to be updated to v5.6 minimum, but v7.1 would be better. Please ask your webhost to update for you.
    Also, I see that your theme is v4.4.1, and had many issues, so please update your theme to the latest version.
    I also see that your WordPress is v4.9.11, please update to the latest version.
    Please ensure that you create a full backup first.
    Perhaps it would be a better idea to test these updates on a stagging site, or test site just to be on the safe side.

    Best regards,
    Mike

    in reply to: Disabling the Lightbox-Feature for one Image-Link #1145592

    Hi,
    Sorry for the late reply,
    Please link to the page in the Private Content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Changing color of bullets in bulleted list #1145583

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Page Scroll #1145574

    Hi,
    Sorry for the late reply, I took a look at your page and code, but couldn’t find any javascript to make it work, plus the dropdown options didn’t match your anchor IDs, but after some research and tinkering I put it all together for you with an offset so the anchors land in view and not under your header, for desktop.
    You can examine the new script and select code in a code block under your text block, which I hid with the visibility options in the element. You can delete your text element if you wish.

    <script>
    (function($){
      $(document).ready(function(){
        $('#select-anchor').change( function () {
            var targetPosition = $($(this).val()).offset().top-110;
            $('html,body').animate({ scrollTop: targetPosition}, 'slow');
        });
    });
    })(jQuery);
    </script>
    <div style="float: right;">
    <h4 style="display: inline; margin-right: 10px; color: #fff;">Select A Category</h4>
    <select id="select-anchor" class="select vendors" style="display: inline; margin-bottom: 0px;" name="dropdpown">
    <option value="#bridal-shops">Bridal Shops</option>
    <option value="#cakes">Cakes</option>
    <option value="#dance-lessons">Dance Lessons</option>
    <option value="#disc-jockey">Disc Jockey</option>
    <option value="#flowers">Flowers</option>
    <option value="#harpists">Harpists</option>
    <option value="#officiants">Officiants</option>
    <option value="#photo-booth">Photo Booth</option>
    <option value="#pianists">Pianists</option>
    <option value="#salons">Salons</option>
    <option value="#string-quartets">String Quartets</option>
    <option value="#travel-transportation">Travel Transportation</option>
    <option value="#tuxedos">Tuxedos</option>
    </select>
    </div>

    Best regards,
    Mike

    in reply to: In / out of stock language #1145571

    Hi,
    Perhaps try using “If” language statements, so your functions will only fire if your site is called in a certain language.
    Please read this solution.

    Best regards,
    Mike

    Hey ikaika72,
    I would recommend removing the left & right footer padding so it’s 100% wide, and then remove the widget margin so there is very little space between the widgets. This will help, but I would point out that the email address will get harvested by bots and you will get more spam than if the email was an encrypted email link.
    Another option would be to change the direction of your widgets, so they are stacked 100% wide, such as in mobile.

    Best regards,
    Mike

    in reply to: Why Does My Ads Move Up…….. #1145567

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Why Does My Ads Move Up…….. #1145562

    Hi,
    Thanks for the feedback, I added the function as contributor css above and it is working for “Betty Jean”
    Please try with your other contributor.
    Please be sure to clear your browser cache.
    The admin account “knothead” didn’t need the css fix, so I assume none of your admins will need it.

    Best regards,
    Mike

    in reply to: Why Does My Ads Move Up…….. #1145559

    Hi,
    So assuming that it is certain user roles that is not getting the top element height, I have this function that will add the role as a class to the body:

    function add_role_to_body($classes) {
        global $current_user;
        $user_role = $current_user->roles;
        return array_merge( $classes, array( $user_role[0] ) );
    }
    add_filter('body_class','add_role_to_body');

    This is added to the end of the functions.php file in Appearance > Editor

    Then the css above can be written with the user role:

    
    #top.contributor #main > div.container_wrap.container_wrap_first.main_color.fullsize > div > main {
    	padding-top: 270px !important; 
    }

    this would be added to the Quick CSS, and duplicated for each role, replacing “contributor” with “editor” “author”, etc.
    Unfortunately the page-id seems to change with each user.

    Best regards,
    Mike

    in reply to: Change header cart icon / Change "Add to cart" button Text #1145556

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Why Does My Ads Move Up…….. #1145555

    Hi,
    Thanks, but in your screenshot the test user has the “admin-bar” so the css will not fire, with the Contributor account you gave us the “admin-bar” didn’t show so I assumed that all Contributors would not have the “admin-bar”
    How many user types are you going to use?

    Best regards,
    Mike

    in reply to: Fullscreen Video with Call to Action Element #1145553

    Hey npmcgrew,
    Sorry for the late reply, the full-screen slider includes a caption and buttons the could be positioned on the screen with it’s own options or css, and jQuery could be used to add a delay before it showed.
    Please try creating a demo page with the video and the caption and button.
    I see your landing page above but it’s not created with the full-screen video and caption.

    Best regards,
    Mike

    in reply to: Enfold Version 4.2.6 Printing CSS Issues in Firefox #1145536

    Hi,
    I would recommend looking for a plugin to overcome this Firefox limitation. This thread is a year and a half old now so there is a good possibility that a better print.css plugin has been created now that lets you choose what you want the user to print, probably print to PDF would be the most universal between all browsers and OS’s.

    Best regards,
    Mike

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: How To Hide Radio Button? #1145522

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Why Does My Ads Move Up…….. #1145519

    Hi,
    Thank you for the logins and screenshots, as a Contributor you do not have the filter bar or some of the other elements so the content moves up, so we should be able to add some padding to the top to correct, but the issue is that this is a different page-id and almost no different classes to hook into to apply css only to this one user type.
    So I added this css based on being “logged-in” but not having the “admin-bar” This works fine for the Admin & Contributor but if you have other users types I’m not sure what will happen, please check.

    #top.page.logged-in:not(.admin-bar) #main > div.container_wrap.container_wrap_first.main_color.fullsize > div > main {
    	padding-top: 270px !important; 
    }

    I did add this css for you so please clear your browser cache and check and test as your different users.

    Best regards,
    Mike

    in reply to: How To Hide Radio Button? #1145489

    Hi,
    Thank you for the link and screenshot, this blue icon is optional from the theme to overlay external image links to show it is a link. But since your plugin is adding the images I don’t see the setting to remove the overlay from within the pages using the plugin. So I added this css to your Quick CSS to hide the overlay from all of your image links over your whole site:

    .overlay-type-extern {
    	display: none !important;
    }

    This is probably easier to manage than changing each image individually anyways. Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thank you for the login, I couldn’t find where “Footer Einstellungen” was getting added so I added the css below to overwrite it with “Datenschutzrichtlinie” I assume this is the correct text, if not just let us know what you would like it to say, or nothing.

    .mfp-content h3.av-special-heading-tag {
    	visibility: hidden;
    }
    .mfp-content h3:before {
      content: 'Datenschutzrichtlinie' !important; 
      font-size: 18px !important; 
      visibility: visible;
    }

    Please see the screenshot in Private Content area.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Search bar and button #1145482

    Hi,
    Thank you for the login, I reviewed your css in the Quick CSS and found you were missing two closing brackets, I fixed and also commented out your #search-3 css in the custom.css file, and disabled your CSS file merging and compression, to reduce caching conflicts while working on this.
    I then added this css for desktop to pin the search bar to the bottom of the header with full-width:

    @media only screen and (min-width: 768px) {
    #search-3 {
    top: 100% !important; 
     padding: 0 !important; 
    }
    #header_main > div {
    	padding: 0px !important;
    }
    }

    Please clear your browser cache and check, then you can enable your CSS file merging and compression if you wish, but I recommend leaving off until you are done with your site.

    Best regards,
    Mike

    in reply to: Font Size #1145474

    Hi,
    Thank you for the link and screenshots, please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field and then clear your browser cache and any cache plugin, and check.
    The css is in the order of your questions and is specific for your homepage so it will not interfere with other pages, except the logo & footer css. Also feel free to adjust to suit.

    
    #top.home .avia-content-slider-inner .slide-entry-excerpt {
    	font-size: 12px !important; 
    }
    
    #top.home .avia-content-slider-inner .blog-categories.minor-meta,#top.home .avia-content-slider-inner .slide-meta {
    	display: none !important;
    }
    #footer #recent-posts-3 a {
    	font-family:'quicksand'!important; 
    	font-size: 16px !important;
    	font-style:normal !important; 
    	font-weight:400 !important; 
    }
    .logo img,.logo a img {
        padding: 5px 0 !important; 
    }
    
    #top.home #av_section_4 > div.container > div > div > div > div.avia-testimonial-wrapper.avia-slider-testimonials {
    	min-height: 201px !important; 
    }

    For your logo padding after scroll the header container has a max-height of 58px which skews the logo after adding the padding, I assume that you have set a custom height at: Enfold Theme Options > Header > Header Layout > Header Size please adjust this to allow for your new padding.

    Best regards,
    Mike

    in reply to: Remove Google Analytics AND Google Tag Cookie #1145469

    Hey Toni,
    I have searched your page source code and found the script loaded in the footer, but there are a few places it could be installed at, Please include an admin login in the Private Content area so I can take a look and remove it for you, it would be quicker, and I will post where I found it.

    Best regards,
    Mike

    in reply to: Typo in Theme Update section #1145466

    Hey Roger,
    Thank you for reporting this, I have reported it to the dev team to check.
    We will leave this open for the dev team.

    Best regards,
    Mike

    in reply to: Images same height but shows different #1145461

    Hi,
    Thanks for the feedback, so to be clear, you don’t care about the widths, correct?
    Full-size and Large will be different for each image as Victoria had pointed out, unless each original image uploaded has the same width & height. In WordPress the resizing is done by “max-width” so it tries to find a width & height “best fit”
    The medium shows same height because it is much smaller and is cropped more.
    Please try editing the images before you upload them to be the exact same size.
    I couldn’t login to see the natural uploaded sizes.

    Best regards,
    Mike

    in reply to: Centering breadcrumbs #1145420

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

    .breadcrumb-trail .trail-before, .breadcrumb-trail .trail-end, .breadcrumb-trail .sep, .breadcrumb-trail a, .breadcrumb-trail .bbp-breadcrumb-current {
        display: inline !important; 
        float: none !important; 
        padding: 0 !important; 
    }
    .breadcrumb-trail .trail-before {
    	display: none !important;
    }
    .breadcrumb.breadcrumbs.avia-breadcrumbs {
        width: 100%;
        margin: auto;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for reporting this, I have reported it to the dev team and will reply here with their update.
    Thank you for your patience.

    Best regards,
    Mike

    Hi,
    Glad Victoria could help, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Showing Two Checkout Buttons #1145415

    Hi,
    Glad you were able to sort this out, 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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: How can I change main menu text font size? #1145414

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

    #avia-menu span.avia-menu-text {
    	font-size: 16px !important; 
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 19,621 through 19,650 (of 35,064 total)