Forum Replies Created

Viewing 30 posts - 24,751 through 24,780 (of 25,536 total)
  • Author
    Posts
  • in reply to: Bug: hide sort-param-count if all products are displayed #711393

    Hi,


    @mandelkind
    : thanks for sharing the snippet you used as workaround. :)

    Best regards,
    Nikko

    Hi,

    Glad that you found the solution :)

    Best regards,
    Nikko

    in reply to: How to add social share counter into the blog bost? #711390

    Hey pimroll,

    Enfold doesn’t have a social share counter feature, so the easiest way is to use plugins, try using one of the plugins recommended here: http://www.bloggingwizard.com/top-wordpress-social-sharing-plugins-2014/

    Best regards,
    Nikko

    in reply to: Mobile menu disappears when logo is removed in header #711386

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Font styling, footer height, new fonts and more #711384

    Hey GraphicEyeDK,

    1. How can I change the following:
    – font color for p
    – Text Transform and Font Weight for main menu
    – letter spacing
    – footer height

    You can change it in Enfold > General Styling > Main Content tab and find Primary then change the color however, it would also affect not only p tag, so what you can do to change it specifically, at the bottom (still in General Styling) you should see Quick CSS, just add this code:

    p {
      color: #000;
      font-weight: bold;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    This should answer the 3, except for the footer. The footer you are referring is the one with copyright? or the 4 columns on top of it?

    2. How do I remove the text “Enfold WordPress Theme by Kriesi”?
    Go to Enfold > Footer > Copyright, just add [nolink] after for example

    © My Company [nolink]

    3. Is it possible to download new fonts or do I need a plugin?
    I would encourage you to use a child theme for Enfold, kindly check this thread: http://kriesi.at/documentation/enfold/using-a-child-theme/ then check the solution on this thread: https://kriesi.at/support/topic/new-custom-font/

    4. I have installed WooCommerce. Is it possible to remove the box with Description, Additional Information and Reviews?
    Hope you are using child theme by now, kindly add this at the bottom of functions.php

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    
    function woo_remove_product_tabs( $tabs ) {
    
        unset( $tabs['description'] );      	// Remove the description tab
        unset( $tabs['reviews'] ); 			// Remove the reviews tab
        unset( $tabs['additional_information'] );  	// Remove the additional information tab
    
        return $tabs;
    
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: scroll balk inside main content #711382

    Hi,

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

    #footer {
        position: fixed;
        bottom: 31px;
        width: 100%;
    }
    
    #socket {
        position: fixed;
        bottom: 0;
        width: 100%;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Having an image in my header #711381

    Hey!

    You can add the following codes to Quick CSS, just replace the IMAGE_URL with the image you have, I will be suggesting image widths on each.

    This is for desktops and all screens that uses more than 1024px screen width. Suggested image width is 1600px.

    #header {
      background: url('IMAGE_URL') no-repeat center center fixed; 
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
    }

    This is for ipad or tablets in landscape orientation. Suggested image width is 1024px.

    @media only screen and (max-width:1024px) {
      #header {
        background-image: url('IMAGE_URL'); 
      }
    }

    This is for ipad or tablets in portrait orientation and mobile in landscape orientation. Suggested image width is 768px.

    @media only screen and (max-width:768px) {
      #header {
        background-image: url('IMAGE_URL'); 
      }
    }

    This is for iphone or mobile devices in portrait orientation. Suggested image width is 480px.

    @media only screen and (max-width:480px) {
      #header {
        background-image: url('IMAGE_URL'); 
      }
    }

    You have 4 image with different sizes you need to use, kindly use the suggested image size. Hope this helps.

    Best regards,
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: Letter spacing for special heading #711380

    Hey!

    I think the best way to do that is to use custom css classes, to enable that you can check this thread: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    For example you add this to the Custom Css Class textfield custom-special-heading (you can use other names), you just need to add this to Quick CSS:

    .custom-special-heading h1.av-special-heading-tag {
      letter-spacing: 10px;
    }
    
    .custom-special-heading .av-subheading {
      letter-spacing: 10px;
    }

    Just adjust the css values, you just need to add custom-special-heading to Custom Css Class textfield in any other special headings and it will apply the css you do.

    As for child theme, yes, I suggest you use it, since enabling we will need to add some code in functions.php to enable the custom css class which will be overwritten once you update the theme.

    Just add the
    Regards,
    Nikko

    in reply to: Short separator differnetr colors #711249

    Hey Antonis,

    Yes, please post the link of the page? so we can inspect further and give you specific css code that would help you make each separator have different color.

    Best regards,
    Nikko

    Hi,

    Are you using jetpack plugin? and have photon enabled? if not can you 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: Letter spacing for special heading #711243

    Hi,

    I apologize for my mistake, try to use this code instead, this is for letter spacing on h1 Special Heading:

    #top.home h1.av-special-heading-tag {
      letter-spacing: 10px;
    }

    This code is for subheadings either above or below the h1 Special Heading:

    #top.home h1.av-special-heading-tag + .av-subheading {
      letter-spacing: 10px;
    }

    Just adjust the letter-spacing as you see fit. Thanks for your patience.

    Cheers!
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Form Fields Background and Button Colors #711235

    Hey eKMUch!

    1) Main color of ALL input fields. Referring to the forum, I tried it with these two, but as you can see it didn’t really work.
    Textarea seems to be working just fine but input fields doesn’t because of the single quotes ‘, I have replaced the single quotes in Quick CSS it should look like this:
    #top .main_color input[type='text'] { background-color: #f0eadd; border: solid 1px #ccc; }

    2) Change the submit button background color on hover and non-hover
    3) change the submit button to full-widht

    Add this code to Quick CSS:

    .avia_ajax_form input[type='submit'].button {
        background-color: #00bdbd;
        width: 100%;
    }
    
    .avia_ajax_form input[type='submit'].button:hover {
        background: #009a9a;
    }

    1st code block is for 2.) non-hover background color and 3.) fullwidth. 2nd block of code is for the button hover, just adjust the color as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: WooCommerce Update Cart Button Unresponsive #711216

    Hi Neil,

    You’re welcome. Glad that it’s fixed :)

    Cheers!
    Nikko

    in reply to: Woocommerce Sale prices displaying wrong #711215

    Hey!

    Yes, you can upload your screen captures in http://imgur.com/ or in dropbox then post the link here. :)

    Best regards,
    Nikko

    in reply to: Woocommerce Sale prices displaying wrong #711214

    Hey!

    Yes, you can upload your screen captures in http://imgur.com/ or in dropbox then post the link here. :)

    Best regards,
    Nikko

    in reply to: Blog preview issues #711212

    Hi eKMUch,

    Glad we could help :)

    Regards,
    Nikko

    in reply to: Link in Gallery is not working #711210

    Hi Iowah,

    Glad we could help :)

    Regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Word Wrap on Layersldier #711208

    Hi Justin,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Full width header #711207

    Hi Matyas,

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: color section column at the top #711134

    Hey Robi,

    Try to add this code in Quick CSS:

    @media only screen and (max-width:767px) {
      .home #av_section_1 .av-special-heading {
        top: -35px;
      }
    }

    Just adjust the value as you see fit :)

    Best regards,
    Nikko

    Hi!

    Try to add this code in Quick CSS:

    #header ul.cart_dropdown {
        display: none !important;
    }

    Let us know if it works.

    Best regards,
    Nikko

    in reply to: Header mobile menu aktivation below 990px #711127

    Hi!
    Thanks for your kind words :) The color is pre-defined in css, you can change the color by adding this code in Quick CSS:

    #top #wrap_all .social_bookmarks a:hover {
        background-color: green;
    }

    Just change the background color as you see fit. Hope this helps :)

    Regards,
    Nikko

    Hey!

    Glad you sorted it out :)

    Best regards,
    Nikko

    in reply to: Letter spacing for special heading #711123

    Hey!

    Try to change the code I gave to:

    #top.home h1.av-special-heading-tag {
        font-size: 30px;
    }

    Let us know if it’s good :)

    Best regards,
    Nikko

    in reply to: Full width header #711121

    Hi,

    Okay, so the there’s no adjustment needed on the body? but only on the header? try adding this code in Quick CSS (this should adjust header):

    #header #header_main .container {
        width: 100%;
        max-width: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Link in Gallery is not working #711119

    Hi,

    I checked it and it’s missing http:// so instead of using http://www.website.com it should be in this format: http://www.website.com. I have added http:// on the 3 images that has links and it works fine now. Let us know if it’s good on your end :)

    Best regards,
    Nikko

    in reply to: Image are not the right way up n mobile. #711116

    Hey Sam,

    Can you post a link on how it looks on your iphone? I tried checking it with an emulator but I couldn’t see what’s wrong and didn’t see the image in sideways.

    Best regards,
    Nikko

    in reply to: Social Icons on mobile menu appear not correctly #711114

    Hey Olga,

    Try to replace the code above with this one:

    @media only screen and (max-width: 767px) {
      .main_menu, #header_main_alternate {
        display: block;
      }
    
      .responsive #header .social_bookmarks {
        display: block!important;
        position: absolute !important;
      }
    }
    

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: autoscrolling #711112

    Hey velkovinoteka,

    The first link you gave, the cause of that is the slider, this can be fixed by cropping the image and making sure all images there are of the same width and height.

    The second link you gave, the cause of that is the testimonial slider (try checking those section above it will never give you that experience), if you want this fixed, you need to disable autorotation other wise the length of the testimonial should be similar so the height doesn’t increase/decrease.

    Hope you find this information helpful.

    Best regards,
    Nikko

    in reply to: Blog preview issues #711109

    Hey eKMUch,

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

    .html_elegant-blog .av-vertical-delimiter,
    .html_elegant-blog .avia-content-slider .av-vertical-delimiter {
        display: none;
    }
    
    .html_elegant-blog .avia-content-slider .slide-entry-title {
        margin-bottom: 0;
    }
    
    .avia-content-slider .slide-entry-wrap .slide-entry-excerpt {
        overflow: visible;
    }

    Let us know if it works :)

    Best regards,
    Nikko

Viewing 30 posts - 24,751 through 24,780 (of 25,536 total)