Forum Replies Created

Viewing 30 posts - 31,621 through 31,650 (of 34,558 total)
  • Author
    Posts
  • in reply to: Changing Site Logo to Text #850211

    Hey CHaanappel,
    It will still be a link, but we can remove the hover text decoration and make it big and black.

    span.subtext {font-size: 30px !important; color: #000;}
    .logo a:hover {text-decoration: none!important; }

    Best regards,
    Mike

    Hi,
    try:

    .entry-content p {color: red !important; }

    Best regards,
    Mike

    in reply to: Thumbnails and submenu #850205

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

    Best regards,
    Mike

    in reply to: No space between image and footer/socket area #850203

    Hi,
    For the footer height try this code in the General Styling > Quick CSS field:

    #footer .widget{
    margin-top:0px!important;
    margin-bottom:0px!important;
    }

    For your socket link go to Enfold Theme Options > Footer > Copyright and form your link like this:

    <a href="http://yoursite.com/link">Link</a>

    Best regards,
    Mike

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

    Best regards,
    Mike

    in reply to: Headline and breadcrumbs colour #850200

    Hey RoyalFlushGroup,
    I cleared your site cache, and it seems right now. Please see screenshot in Private Content area and please clear your cache

    Best regards,
    Mike

    in reply to: Shopping Cart #850199

    Hi,
    It is above, try looking for this:

    //	trigger changed in WC 3.0.0 - must check for event explecit
    		if( (empty.length > 0) && ( 'undefined' !== typeof event ) )

    Best regards,
    Mike

    Hi,
    Please try:

    .single-post .entry-content {
        background-color: #888!important; 
        padding: 5px 10px!important; 
    }

    please see screenshot in Private Content area of how it will look.

    Best regards,
    Mike

    in reply to: import minimal portfolio layout #850189

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

    Best regards,
    Mike

    in reply to: Slider with thumbnails #850188

    Hey zimbo,
    You are correct that the Enfold sliders don’t have thumbnail functionality, and the gallery thumbnail animation do not auto-rotate.
    For easy use you can probably find a free WP plugin for your client, WP Thumbnail Slider looks easy. Here’s a article about 11 Excellent Free Responsive WordPress Slider Plugins

    Best regards,
    Mike

    in reply to: Woo Checkout dropdowns #850185

    Hi,
    Try this code in the General Styling > Quick CSS field:

    abbr[title], acronym[title] {
        text-decoration: none !important;
    }

    Best regards,
    Mike

    in reply to: minus margins not working #850183

    Hey Uroš,
    Try using “top” instead of “margin-top”
    2017-09-10_134507

    Best regards,
    Mike

    in reply to: Fixed small header but main scrolls #850178

    Hi,
    Thank you for sharing the solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Issue with breadcrumb #850176

    Hi,
    Try changing to:

    add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 );
    function remove_category_from_breadcrumb( $trail, $args ) {
    	if ( is_single() ) {
    		unset ($trail[1]);
    	}
    	return $trail;
    }

    Best regards,
    Mike

    in reply to: Image in table header won't display on mobile #850175

    Hi,
    The issue is caused by your plugin JCH Optimize Pro try turning it off and flush WP Fastest Cache, or turn them both off.
    This solves the image link code from showing, but your image won’t show because for mobile the shortcodes.css collapses that area.
    If you want to show your full table on mobile, which maybe hard to read, you’ll need to remove this code from shortcodes.css between lines 1725 – 1765, and add the modified file to your child theme:

    @media only screen and (max-width: 767px)
    {
    	.responsive div .avia_responsive_table .avia-data-table table,
        .responsive div .avia_responsive_table .avia-data-table tbody,
        .responsive div .avia_responsive_table .avia-data-table tr,
        .responsive div .avia_responsive_table .avia-data-table td,
        .responsive div .avia_responsive_table .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
        .responsive .avia_responsive_table .avia-data-table{border-style:solid; border-width: 1px;}
        .responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
        .responsive .avia_responsive_table .avia-data-table .avia-button-row, .responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none;}
        .responsive .avia_responsive_table .avia-data-table td:before {
    	display:block;
    	font-style: italic; font-size: 11px;
    	}
    
    	.responsive .avia_responsive_table .avia-data-table td {
    		position: relative;
    	}
    
        .responsive .avia_scrollable_table {
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: -ms-autohiding-scrollbar;
        }
    	
        .avia_scrollable_table .avia-table {
        	width: auto;
        }
    
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
            white-space: nowrap;
        }
    }

    I don’t recommend this, as it will be hard to read on mobiles

    Best regards,
    Mike

    in reply to: Blog Layout #850167

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

    Best regards,
    Mike

    in reply to: Fixed Frame #850166

    Hi,
    Try changing you code to this:

    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .av-frame.av-frame-left, .responsive .av-frame.av-frame-right {
        display: inherit; }
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        right: 30px!important; }}
    @media only screen and (max-width: 767px) {
    .responsive .av-frame.av-frame-left, .responsive .av-frame.av-frame-right {
        width: 15px!important;  }
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        right: 15px!important; }}

    Best regards,
    Mike

    in reply to: Menu not showing up on mobile #850165

    Hi,
    The site seems down for me right now, if you have two scroll bars you may have a partial css rule in your css, try removing all of the code again to see if that solves it, or at least rule that out. same for the nav issue.
    For the menu check that your theme options are set to “Logo left, Menu right”.

    Best regards,
    Mike

    in reply to: Thank you Message after suscribing to the Newsletter #850160

    Hi,
    Unless you are using a child theme, changes to theme files will be lost when updating
    2017-09-10_114058
    But if you test on your desktop with a localhost, with a clone of your live site, you will see how the upgrade works with your site, and you can copy any lost changes from your live site to your localhost.
    When you do you’ll use a child theme so you’ll never worry again :) Read about child theme’s & Get one here
    The goal is to make your localhost site perfect and then clone it to your live site saving you from surprises and headaches.

    Best regards,
    Mike

    in reply to: space between menu items #850156

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

    Best regards,
    Mike

    in reply to: Blog Layout #850155

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .sp_event div.blog-meta,.sp_event span.minor-meta,.sp_event h1.entry-title,.sp_event span.av-vertical-delimiter,.sp_player div.blog-meta,.sp_player span.minor-meta,.sp_player h1.entry-title,.sp_player span.av-vertical-delimiter,.sp_team div.blog-meta,.sp_team span.minor-meta,.sp_team h1.entry-title,.sp_team span.av-vertical-delimiter {display:none!important;}

    Please clear your cache

    Best regards,
    Mike

    in reply to: How to add resizable img in header (like logo) #850148

    Hi,
    Ok, remove the first code I gave you and Try this code in the General Styling > Quick CSS field:

    #header.header-scrolled .widget_media_image img {
    height: 40px !important; width: 40px !important;
    }

    Please clear your cache :)

    Best regards,
    Mike

    in reply to: the menu color is wrong #850143

    Hi,
    Try this code in the General Styling > Quick CSS field for each language:

    @media only screen and (max-width: 767px) { #top .av_header_with_border.av_header_transparency #header_main {background-color: #9ea9b0!important;}}

    Please see screenshot in Private Content area & Please clear your cache for browser and site.

    Best regards,
    Mike

    in reply to: Avatar problem in mobile device #850137

    Hi,
    OK I have checked in Android, Firefox, & Chrome, with no issues. So it seems to only happen in iPhone, I will ask a team member to check. Which one are you using?
    Please leave the author image on for a little while so they can easily check, thanks.

    Best regards,
    Mike

    in reply to: Blog Layout #850129

    Hi,
    1) I changed “Pagination” to “No”
    2) I changed “Sidebar on Archive Pages” to “No Sidebar”
    3) I’m unsure which to keep & which to hide, please see screenshots in Private Content area
    Please include screenshots of which one to hide

    Best regards,
    Mike

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

    Best regards,
    Mike

    in reply to: Performance problem with "Magazin post" feature #850019

    Hey vmoralestejedor,
    It seems your page loads first-byte in about 6 seconds on that page, and then loads everything else very quickly:
    https://www.webpagetest.org/result/170909_51_af9af8fd74fa7c788068e13e9c2ebf8e/
    where your first-byte is only about 1 second on your homepage:
    https://www.webpagetest.org/result/170909_3X_c326b6c2376ff1d211ec06b471639087/
    first-byte is the time for your server to respond, which should be around 200ms.
    if you look at the tests, I don’t see any reason why it is slow from a page load perspective since the largest file is 51.9 KB for a total of 1,023 KB
    I see your caching is not on, have you tried turning it on?

    Best regards,
    Mike

    in reply to: Product list (Attributes). #850016

    Hey zeaigars,
    My research has led me to believe this is accomplished with a plugin such as these https://barn2.co.uk/woocommerce-product-list-view-plugin/
    but to ensure you didn’t miss a step here’s the woo documentation too https://docs.woocommerce.com/document/variable-product/
    let us know if this helps.

    Best regards,
    Mike

    in reply to: default page template #850015

    Hey dee804203,
    You can go to Enfold Theme Options > General Layout > Dimensions and set a maximum width for your site, right now it looks like it’s 1210px, and/or you can set a percentage width for the content, such as 80%. Try different setting until you are happy.
    2017-09-09_173722

    Best regards,
    Mike

    in reply to: Avatar problem in mobile device #850014

    Hey vmoralestejedor,
    Please provide a link to the page in question, I searched your site but only found your posts with no image.
    also, when viewing the same post on a larger screen, is the image to the left or above?

    Best regards,
    Mike

Viewing 30 posts - 31,621 through 31,650 (of 34,558 total)