Forum Replies Created

Viewing 30 posts - 24,871 through 24,900 (of 25,536 total)
  • Author
    Posts
  • in reply to: search magnifying glass icon too small. #709825

    Hey j-keogh,

    Try using this code:

    #top #menu-item-search > a:before {
        font-size: 24px;
    }

    Or this one if it doesn’t work:

    #top #menu-item-search > a:before {
        font-size: 24px !important;
    }

    Just adjust the font-size value as you see fit :)

    Best regards,
    Nikko

    in reply to: Removing link from the title of a single post #709817

    Hi Paola,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: setting a Background image in Enfold Wedding Theme #709813

    Hi,

    Try to add this code in Quick CSS:

    @media only screen and (max-width:767px) {
      #top #wrap_all #header {
        background: transparent !important;
      }
    
      .responsive #top .logo {
        opacity: 0;
        visibility: hidden;
      }
    }

    The first block should remove the white in the top area, the 2nd block of code removes the white image showing in the top area. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Grid row cell alignment #709797

    Hey td8000,

    Can you post a link to the page having that issue? you can post in the “private content” section when you reply so only moderators can see. :)

    Best regards,
    Nikko

    in reply to: Footer : Navigation on mobile #709794

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Nikko

    in reply to: Logo Removal #709792

    Hi,

    You can remove the header by adding this code to Quick CSS:

    #header {
        display: none;
    }

    You also might want to remove this black bar on top of your site, just add this on Quick CSS:

    #sfm-mob-navbar {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Footer : Navigation on mobile #709785

    Hi,

    Try adding this code to your Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      div#footer {
        height: auto;
      }
    
      .responsive #footer .av_one_fifth.flex_column {
        float: none;
      }
    }

    Let us know if it helps :)

    Best regards,
    Nikko

    in reply to: Footer : Navigation on mobile #709750

    Hey Webdesign,

    Can you post a link to your site? you can post it in the “private content” section when you reply so only moderations can see it.

    Best regards,
    Nikko

    in reply to: Search bar permanently open #709747

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Change title and date font size in posts grid display #709746

    Hey digitalalso,

    Try adding this code in Quick CSS (located in Enfold > General Styling):

    #top #wrap_all .av-masonry h3.av-masonry-entry-title.entry-title {
        font-size: 24px;
    }
    
    #top #wrap_all .av-masonry span.av-masonry-date {
        font-size: 14px;
    }

    24px is for the title and 14px the date, just change the values as you see fit. Hope this helps :)

    Best regards,
    Nikko

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Link to PDF or file using SearchWP-Plugin #709676

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Word Wrap on Layersldier #709674

    Hey Justin,

    Can you post a screenshot on this? I’m using an emulator and nothing gets cut on the layerslider upon checking the link you have given.

    Best regards,
    Nikko

    in reply to: WooCommerce Advanced Product Labels Change Font #709671

    Hi Chrissy,

    If Helvetica is enabled, you should be able to use it, try to use this code:

    .woocommerce-advanced-product-label {
      font-family: 'Helvetica', Arial, sans-serif

    !important;
    font-weight: 300;
    }
    I am assuming you have a font called Helvetica, you can change the Arial and sans-serif which are fallbacks if Helvetica isn’t available or couldn’t be loaded. You got a random font above because there’s no fallback fonts in case the helvetica isn’t loaded, Hope this helps.

    Best regards,
    Nikko

    in reply to: product title in product grid #709668

    Hey grwebs,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    #top #wrap_all .inner_product_header {
        opacity: 1 !important;
        visibility: visible !important;
    }

    Let us know if it works :)

    Best regards,
    Nikko

    Hi,

    Glad it’s fixed :)

    Best regards,
    Nikko

    in reply to: Removing link from the title of a single post #709664

    Hi,

    Try to add this code in your functions.php:

    function removelink_script(){
    ?>
    <script type="text/javascript">
    (function($){
      function removelink() {
        $(".single .entry-title .post-format-icon").unwrap();
      }
    
      removelink();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'removelink_script');

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: Adding Avia Elements to Woocommerce archive-product.php #709649

    Hi Elena,

    Can you also provide us with ftp details of your site? it’s a bit risky to edit php files in wordpress’ theme editor. Also just to confirm the shortcode you posted above results in the slider with girl in glasses and 5 icons below it?

    Best regards,
    Nikko

    in reply to: Homepage displaying oversized #709646

    Hi,

    I checked on your site and I don’t see anything same as the screenshot you posted. The only difference the first time going to your homepage is that it has that notification above Want FREE Airbnb same as your screenshot but it doesn’t make the menu items be in 2 lines/rows. Can you try to check on other computer/laptop and if it has the same issues you are experiencing.

    Best regards,
    Nikko

    in reply to: extract of post #709640

    Hi Luigina,

    Is this already fixed? I can see after the post excerpt there is this and a Continue Reading button.

    Best regards,
    Nikko

    Hi,

    Try adding this code in your Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:990px) and (min-width:768px) {
    	.responsive #top #wrap_all .container { width: 85%; max-width: 85%; margin: 0 auto; padding-left:0; padding-right:0; float:none;}
    
    	.responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1}
    	.responsive #top .av_header_transparency .logo img.alternate{display:none;}
    
    	.responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1;}
    	.responsive #top #main {padding-top:0 !important; margin:0;}
    	.responsive #top #main .container_wrap:first-child{ border-top:none; }
    	.responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
    	.responsive .phone-info{float:none; width:100%; clear:both; text-align: center;}
    	.responsive .phone-info span{margin:0;padding:0; border:none;}
    	.responsive.html_header_top #header_main .social_bookmarks ,
    	.responsive.html_top_nav_header #top .social_bookmarks { right: 50px; width:auto; margin-top:-16px; }
    
    	.responsive .main_menu{display: none;}
    	.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
    	.responsive .logo a{display:table-cell; vertical-align: middle;} 
    	.responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block;  max-height: 80px;}
    	.responsive #header_main .container{height:auto !important; }
    	.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
    	.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
    	.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
    	.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
    	.responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width:  1px;}
    	.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
    	.responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
    	.responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
    	.responsive #header .social_bookmarks li{float:none; display: inline-block;}
    	.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
    	.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
    	.responsive .logo img{margin:0;}
    	.responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
    	.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}
    
    	.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, 
    	.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, 
    	.responsive #top .av_header_transparency #header_main_alternate, 
    	.responsive .av_header_transparency #header_main .social_bookmarks li a,
    	.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
    	.responsive #top .av_header_transparency #header_meta, 
    	.responsive #top .av_header_transparency #header_meta li,
    	.responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
    	.responsive.html_top_nav_header .av-logo-container{height:auto;}
    	.responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
    	#top #header_main { background:#fff; position: fixed; }
    	#top #advanced_menu_toggle { display: block; }
    }

    Let us know if it works :)

    Best regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Burger menu on mobile with Logo center menu below setting #709624

    Hi,

    I’m not sure if I understood this correctly I am looking for a way to substitute old enfold mobile menu with the burger menu on mobile., I think you want to replace the icon with another icon or an image, if it’s an image try to add this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width: 989px) {
      #top #advanced_menu_toggle {
        background: url('NEW_BURGER_IMAGE') center center no-repeat !important;
      }
    
      #advanced_menu_toggle:before {
        display: none;
      }
    }

    Just replace NEW_BURGER_IMAGE with the url of the image/icon you want to change, hope this helps :)

    Best regards,
    Nikko

    in reply to: Theme Update Hangs #709621

    Hi,

    It’s really hard to pinpoint what is causing the issue, I think enabling wordpress debugger can help us with it (check here for more info: https://codex.wordpress.org/Debugging_in_WordPress )

    Can you go to wp-config.php and find this code:

    define('WP_DEBUG', false);

    please replace it with:

    define( 'WP_DEBUG', true );
    
    define( 'WP_DEBUG_LOG', true );
    
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    
    define( 'SCRIPT_DEBUG', true );

    after saving this, try to update the theme, if there’s a problem it will generate an error_log file which would can be found in the same folder as wp-config.php file (might need to reload the folder to see), let us know if it generates the file then post the content here, it might help us resolve this issue.

    Best regards,
    Nikko

    in reply to: Grid Row – Mobile #709617

    Hi,

    Yes there is a way to do that unfortunately since the columns you are using is 5 it won’t be even if we use 2-3 columns, the only solution I can give you is make it 1 column, I have added this code in your Quick CSS:

    @media only screen and (max-width:1024px) and (min-width:768px) {
      #top .av-flex-cells {
        border: 0;
      }
    
      #top .av_one_fifth.flex_cell {
        border: 1px solid #eee;
        border-bottom: 0;
        display: block;
        float: none;
        margin: 0 auto;
        width: 90%;
        max-width: 560px;
      }
    }

    Let us know if the solution is good.

    Best regards,
    Nikko

    in reply to: Problem with changing styles when slider is deleted #709613

    Hey!

    Thanks for your patience, sorry I missed this thread yesterday. I have copied the special events page and on the copy I removed the fullwidth easy slider and it seems to be good, the link is in the private content. Let us know if it’s good on your end also, if not kindly tell us the browser used, if on pc, mac, etc, any information would help so we can try to replicate the environment.

    Cheers!
    Nikko

    in reply to: Custom Css Class for Fullwidth Sub Menu #709609

    Hi!

    Try to change the code I gave to this one:

    #top #sub_menu1 {
        bottom: 0;
    }
    
    #top.page-id-6741 .sticky_placeholder {
        height: 0 !important;
        overflow: hidden;
    }

    Let us know if it works :)

    Cheers!
    Nikko

    in reply to: Page within a page #709604

    Hey promhock,

    Can you give an example of page within a page? or are you referring to iframes: http://www.w3schools.com/html/html_iframe.asp ?

    Best regards,
    Nikko

    in reply to: avia_transparency_logo appearing on Events pages #709603

    Hi Adam,

    Can you post a screenshot on that error?

    As for the avia_transparency_logo and avia_custom_background_image appearing it seems that it is already in the database. Can you run this code in phpmyadmin, make sure the right database is selected:

    UPDATE wp_posts
    SET post_title = ""
    WHERE post_title = "avia_custom_background_image";
    
    UPDATE wp_posts
    SET post_title = ""
    WHERE post_title = "avia_transparency_logo";

    If you don’t want to do this kindly allow us to have a cpanel access to gain access on phpmyadmin. This should remove avia_custom_background_image and avia_transparency_logo. Then add this css code to Quick CSS (located in Enfold > General Styling):

    @media only screen and (min-width: 989px) {
      .responsive .single-tribe_events #tribe-events-content .tribe-events-event-meta dd {
        margin-bottom: 8px;
        padding-bottom: 0;
      }
    }

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: bouncing effet with layer Slider #709599

    Hi,

    Thanks for contacting us :)

    Best regards,
    Nikko

    in reply to: LayerSlider, Background issue when using a blog #709598

    Hi Enrico,

    Glad we could help :)

    Best regards,
    Nikko

Viewing 30 posts - 24,871 through 24,900 (of 25,536 total)