Forum Replies Created

Viewing 30 posts - 62,581 through 62,610 (of 66,027 total)
  • Author
    Posts
  • in reply to: top button no icon #170651

    Hi!

    Did you install the LayerSlider as a stand alone plugin? You have a lot of plugins installed. Please deactivate them. Download the theme again on your themeforest account, look for the config-templatebuilder folder then override your theme files.

    Regards,
    Ismael

    in reply to: Global deactivating of HEADER #170649

    Hi chooseone!

    That is not available on Theme Options but you can hide it using CSS:

    .page .stretch_full.container_wrap.title_container, .single .stretch_full.container_wrap.title_container, .stretch_full.container_wrap.title_container  {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Page Linking #170643

    Hi aquinum!

    Please try this plugin: http://wordpress.org/plugins/quick-pagepost-redirect-plugin/

    Regards,
    Ismael

    in reply to: Yoast is still breaking my site #170642

    Hi ranfirefly!

    What do you mean it’s breaking the site? Please be specific. A link to your site will help. Download the latest version of WordPress then try to disable the ‘Tracking’ settings on the SEO plugin.

    Cheers!
    Ismael

    in reply to: entypo fonts dont works #170343

    Hello!

    Please don’t use icons that are blank when you visit the site http://www.entypo.com/characters/

    You can also get more icons on http://fontello.com/ . Use the Enfold > General Settings > Iconfont Manager.

    Best regards,
    Ismael

    in reply to: Accessing Theme style colours from custom CSS. #170342

    Hi ChunkyBits!

    Sorry but I don’t understand what you mean. You can use the css > custom.css file to override any styling on the theme. You can use Enfold > Styling panel to apply automatic css changes but if you want to define a specific style on a certain element, you need to add it on the Quick CSS field or use the custom.css file.

    Cheers!
    Ismael

    Hello dsgnerfw!

    What type of header are you using right now? You can increase the size of the social icons using this:

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

    Cheers!
    Ismael

    in reply to: Search is not correctly displayed #170335

    Hello!

    The website http://wpnice.ru is not using the Enfold theme. Please give us the proper link.

    Cheers!
    Ismael

    Hi kbreslin!

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

    .avia-layerslider {
    z-index: 0;
    position: relative;
    }
    
    .template-page.content.twelve.alpha.units {
    z-index: 0;
    }
    
    .fixed_header #header {
    position: fixed;
    z-index: 9999;
    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Global setting inadvertently changed?? #170333

    Hi citystash!

    What do you mean by ugly? What are the changes that occur? Please be specific. Editing pages should not affect the styling of the site. Try this on your custom.css or Quick CSS field:

    p, span {
    font-size: 14px;
    }

    Regards,
    Ismael

    in reply to: Open gallery images at original size #170332

    Hey!

    The password and user are incorrect. Can you give us a link to the actual page with gallery images?

    Best regards,
    Ismael

    in reply to: Products not showing up #170331

    Hello!

    Please update the products manually, see if they show up on the shop page.

    Best regards,
    Ismael

    in reply to: Multiple variations of one fifth colums #170328

    Hey Niels!

    It is not possible with the Advance Layout Builder right now but you can do it manually. For example, if you want to 4 fifths + 1 fifth layout you can add a Text Block then add use this code:

    <div class="av_four_fifth first" style="background: red;">Text Here</div>
    <div class="av_one_fifth" style="background: blue;">Text Here</div>

    Notice class=”av_four_fifth first”, the “first” selector will remove the left margin on an element.

    Add this on your custom.css or Quick CSS;

    .av_one_fifth {
    	margin-left: 6%;
    	width: 15.2%;
    	float: left;
    }
    
    .av_four_fifth {
    	margin-left: 6%;
    	width: 78.8%;
    	float: left;
    }

    You can do the math on other layouts. :)

    Regards,
    Ismael

    in reply to: How to apply custom css to pagination #170326

    Hi kriru!

    You can do something like this on your custom.css or Quick CSS:

    .pagination_split_post span {
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    border: 1px solid gray;
    margin-left: 5px;
    text-align: center;
    padding-bottom: 10px;
    background: #64a9dc;
    border-radius: 3px;
    box-shadow: 0 1px 2px gray;
    color: white;
    text-shadow: 0 1px 1px gray;
    }
    
    .pagination_split_post a span {
    background: white;
    color: gray;
    }
    

    Just clean it up a little. :)

    Cheers!
    Ismael

    in reply to: Enfold not working well in Internet Explorer #170323

    Hi infoportugal!.

    Please give us a link to your website. Do you have Enfold 2.3? Please update your theme. Install this plugin: http://wordpress.org/plugins/html5shiv/

    Regards,
    Ismael

    in reply to: top button no icon #170283

    Hey!

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

    #top .ls-nav-prev, #top .ls-nav-next {
    font-family: 'entypo-fontello';
    }

    Cheers!
    Ismael

    in reply to: JW Player not visible on default blog page #170278

    Hello jschuer!

    Please edit each post then click Screen Options. Enable the “Excerpt” metabox. Insert the jw player shortcode on the Excerpt option along with the excerpt paragraph.

    Best regards,
    Ismael

    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

Viewing 30 posts - 62,581 through 62,610 (of 66,027 total)