Forum Replies Created

Viewing 30 posts - 30,871 through 30,900 (of 33,814 total)
  • Author
    Posts
  • in reply to: Tabs are slowing down my page #850225

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

    Best regards,
    Mike

    in reply to: How to change username to first name in my account salutation #850223

    Hey tl_s180,
    Go to your profile and add a nickname, then you will have the display name option
    2017-09-10_154718

    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: Bold element refusing to show as blue! #850219

    Hi,
    Go to Enfold Theme Options > Layout Builder
    here’s a screenshot
    2017-09-10_154204

    Best regards,
    Mike

    in reply to: Fixed Frame #850215

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

    Best regards,
    Mike

    Hey sky19er,
    Sounds like you are missing the the PHPZip class, your host may have deactivated it (server configuration). You need to contact the host/server provider and ask them to activate the PHPZip class for you.

    Best regards,
    Mike

    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

Viewing 30 posts - 30,871 through 30,900 (of 33,814 total)