Forum Replies Created

Viewing 30 posts - 63,421 through 63,450 (of 66,850 total)
  • Author
    Posts
  • in reply to: Product bundle images too big #170274

    Hi ChaosWeb!

    You can add this on your custom.css or Quick CSS:

    .bundled_product.bundled_product_summary.product .images a img {
    width: 200px;
    }

    Adjust the width if necessary.

    Cheers!
    Ismael

    in reply to: Paddings #170271

    Hi!

    You need to adjust the container width on different screen widths:

    @media only screen and (min-width: 1140px) { 
    .main_color.container_wrap.sidebar_right .container {
    margin: 0 20px;
    width: 940px;
    }
    }
    
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .main_color.container_wrap.sidebar_right .container {
    margin: 0 20px;
    width: 742px;
    }
    }
    
    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .main_color.container_wrap.sidebar_right .container {
    margin: 0;
    width: 468px;
    }
    }

    Regards,
    Ismael

    in reply to: Code of advertising #170267

    Hello!

    You can use the Advance Layout Builder. Insert a Text Block element then paste the google ad code there.

    Cheers!
    Ismael

    in reply to: Featured images in blog posts #170265

    Hey mikaelsv!

    There are small and big featured images. What type of Blog are you using right now? Please check your settings on Enfold > General Settings > Blog Style. Post it here.

    Regards,
    Ismael

    in reply to: Blank Page – template #170264

    Hey!

    Did you remove the google conversion iframe?

    iframe[name="google_conversion_frame"] {
    display: none;
    }

    Did the code above work on Mozilla?

    Regards,
    Ismael

    in reply to: circular Thumbnails #170262

    Hey aledarbo!

    Where will you use the thumbnails? Post, portfolio? You can use border-radius property to render a circle image.

    http://css-tricks.com/almanac/properties/b/border-radius/

    Best regards,
    Ismael

    in reply to: Main Menu disappears on tablets and medium width #170261

    Hey Martijn Lindeboom!

    Please add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_menu_tablet .main_menu {
    display: block;
    }
    }

    Cheers!
    Ismael

    in reply to: Changing Menu header background colors & social icons #170260

    Hey andypeck!

    1.) Add the following on the Quick CSS field or custom.css:

    #header_meta {
    background: red;
    }

    2.)

    #top .social_bookmarks li a {
    width: 40px;
    line-height: 42px;
    margin: 0px;
    padding: 0;
    min-height: 40px;
    font-size: 20px;
    }

    3.)

    #header_main_alternate, #avia-menu {
    background: red;
    }

    4.) You can inspect each menu item then look for the menu list id:

    #menu-item-755 a {
    background: blue;
    border-right: 1px solid green;
    border-left: 1px solid yellow;
    border-top: none;
    }

    Cheers!
    Ismael

    in reply to: Problem with EasySlider, and logo #170257

    Hi groggy4pres!

    1.) It will show the full width of the image but it takes time to resize. You can resize your browser then reload the page, you’ll see the whole width of the slider image.

    2.) It doesn’t crop on my end but the logo needs a top margin. Add this on your custom.css or Quick CSS:

    .logo {
    margin-top: 20px;
    }
    
    .header-scrolled .logo {
    margin-top: 0;
    }

    Cheers!
    Ismael

    in reply to: Homepage recents post thumbnails #170255

    Hi!

    The code works on my end. These are the code and their respective screenshots on different screen width:

    @media only screen and (max-width: 1000px) and (min-width: 700px)
    .avia-content-slider .slide-image img {
    height: 180px !important;
    }

    @media only screen and (max-width: 767px) {
    .avia-content-slider .slide-parity-even .slide-image img {
    height: 160px;
    }
    
    .avia-content-slider .slide-parity-odd .slide-image img {
    height: 160px;
    
    .avia-content-slider .slide-parity-odd.first .slide-image img {
    height: 250px !important;
    }
    }

    Regards,
    Ismael

    in reply to: Password Protect WooCommerce in Enfold #170246

    Hi crossbowstudio!

    Maybe you can use http://wordpress.org/plugins/s2member/ in combination with http://wordpress.org/plugins/sidebar-login/. The S2 plugin gives you a better user/member management and sidebar login allows you to hide certain pages if logged in or not. You can define different access levels for each page and post. Those access rights are linked with the user administration of WP. If a member doesn’t have the access right for a page or post and he or she visits, s2 displays the login page or the registration page.

    Cheers!
    Ismael

    in reply to: Parent Theme Settings Import to Child Theme #170242

    Hey!

    Yes, I’m saying that there is a case where he lose all the theme settings after updating. That is why you need to create a backup of your database. :)

    Regards,
    Ismael

    Hello!

    1.) You can use Contact Form 7. Please refer to this link: http://contactform7.com/file-uploading-and-attachment/

    2.) You can add this on your custom.css or Quick CSS:

    .main_color h3.iconbox_content_title {
    color: white;
    }
    
    .main_color .sort-param .current-param a {
    color: white;
    }
    
    .main_color .sort-param > li > span, .main_color .sort-param > li > a, .main_color .sort-param ul {
    background-color: #000000;
    color: white;
    }
    
    .main_color .product-sorting strong {
    color: white;
    }

    Cheers!
    Ismael

    in reply to: Reduce height of Fullscreen slider in responsive mode #170237

    Hello!

    You can use this:

    @media only screen and (max-width: 767px) {
    .avia-fullscreen-slider .avia-slideshow {
    height: 200px !important;
    }
    }
    
    .avia-fullscreen-slider .avia-slideshow {
    max-height: 250px !important;
    }

    Regards,
    Ismael

    in reply to: Main Menu last item #170236

    Hey RicardoSuarez!

    Just add this on your custom.css or Quick CSS:

    #top .main_menu .menu>li:last-child>a {
    padding-right: 10px;
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: ERR_TOO_MANY_REDIRECTS #170235

    Hey gianmarizzi!

    Have you tried disabling all your plugins? Do you have a Yeost SEO plugin? Set your permalink settings to default then fix it. Refer to this link: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    Cheers!
    Ismael

    in reply to: Enfold – Phone Info #170164

    Hey!

    1.) You can add this on your custom.css or Quick CSS:

    #header_meta {
    z-index: 9999;
    position: relative;
    }

    Cheers!
    Ismael

    in reply to: Enfold – Phone Info #170163

    Hey!

    1.) You can add this on your custom.css or Quick CSS:

    #header_meta {
    z-index: 9999;
    position: relative;
    }

    Cheers!
    Ismael

    in reply to: Changed rollover icon but doesn't look correct #170162

    Hey!

    The link you provided is not working. Are you sure this is correct?

    Regards,
    Ismael

    in reply to: Enfold Mega Menu bug #170160

    Hello!

    You can hire someone on odesk.com or freelancer.com. Let’s wait for other team member’s response. Maybe, they are available.

    Cheers!
    Ismael

    in reply to: Save colors #170159

    Hi!

    No, you can’t save Color Settings at the moment but you can select predefined color schemes.

    Best regards,
    Ismael

    in reply to: IE8 Issues + others? #169735

    Hi!

    Yes, please try it on custom.css or QuicK CSS. Please try to manually add the background image on avia sections.

    .avia-section {
    background-repeat: no-repeat;
    background-image: url(https://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg);
    background-attachment: scroll;
    background-position: top center;
    background-color: #ffffff;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale');
       -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale')";
    }

    Regards,
    Ismael

    in reply to: new social icons #169734

    Hello!


    @Michae1
    : Enfold 2.3 has the ability to upload new icon fonts. Go to Enfold > General Settings > Iconfont Manager.

    Cheers!
    Ismael

    in reply to: Changed rollover icon but doesn't look correct #169729

    Hello!

    Can you give us a link to the page ? We need to inspect it.

    Cheers!
    Ismael

    in reply to: Show tags and categories at portfolio pages #169727

    Hi Sowmedia!

    If I’m not mistaken, Kriesi mentioned including the tags and category on the next update. Please download Enfold 2.3.

    Regards,
    Ismael

    in reply to: Blank Page – template #169726

    Hi!

    Please try this on your custom.css or Quick CSS:

    http://pastebin.com/gCS41cHY

    Cheers!
    Ismael

    in reply to: Blog Posts element pagination bug on Frontpage #169723

    Hello davidw!

    Please remove it as the Frontpage on theme settings. Instead, use the Settings > Reading > Front page displays > A static page (select below) > Front page: to set the home as frontpage.

    Cheers!
    Ismael

    in reply to: Entypo icon font in footer #169719

    Hi!

    Use the HTML entity of the icon. As an example, we will use the iPhone icon html code on this link: http://www.entypo.com/characters/

    The code is: &# 128241;

    Cheers!
    Ismael

    in reply to: Icons Still Missing #169714

    Hi NickBrunson!

    Have you tried using different icons? Please try to use icons from the old selection, let us know if it works. The Iconfont Manager is not fully tested, some icons might not render properly.

    Regards,
    Ismael

    in reply to: top button no icon #169709

    Hello mmi!

    Can you give us a link to the actual website? Have you tried using different icons?

    Best regards,
    Ismael

Viewing 30 posts - 63,421 through 63,450 (of 66,850 total)