Forum Replies Created

Viewing 30 posts - 46,201 through 46,230 (of 66,075 total)
  • Author
    Posts
  • in reply to: Icon Box Title over running when resized #483657

    Hi!

    Please remove the code then use this:

    @media only screen and (max-width: 1200px) and (min-width: 768px) {
    .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half, .responsive .avia-content-slider-inner .av_one_fourth.first {
        margin-left: 0%;
        clear: both;
    }
    
    .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth + .av_one_fourth, .responsive .avia-content-slider-inner .av_one_fourth {
        margin-left: 4%;
        width: 48%;
    }
    }

    Or you can decrease the title font size:

    @media only screen and (max-width: 1200px) and (min-width: 768px) {
    #top .entry-content-wrapper h3 {
        font-size: 20px;
    }}

    Cheers!
    Ismael

    in reply to: Page Preloading only on home page? #483655

    Hi!

    Please test it again without browser cache and make sure that you’re using the correct page id. Hard refresh before testing the page.

    Best regards,
    Ismael

    in reply to: Removing 'Kriesi' backlink in footer. #483651

    Hi prettyfish!

    Thank you for using Enfold.

    Use the [no backlink] tag in the copyright field then add other content:

     [no backlink] Another info here... 
    

    Best regards,
    Ismael

    in reply to: Move Product description to full width #483650

    Hi!

    I’m sorry but what you’re trying to do is not possible without major modification on product template because those thumbnails are located on a different container.

    Regards,
    Ismael

    in reply to: Different order on flex_columns in responsive mode #483649

    Hey!

    I’m afraid the flexible box layout is not going to work on your current setup. All columns inside the container will be affected by the box and box orientation property. You can see an example here: http://robertnyman.com/css3/flexible-box-layout/flexible-box-layout.html

    Anyway, you can try this:

    #after_section_2 .content .entry-content-wrapper {
        width: 100%;
        display: -moz-box;
        display: -webkit-box;
        display: box;
        -moz-box-orient: vertical;
        -webkit-box-orient: vertical;
        box-orient: vertical;
    }
    
    #after_section_2 .content .entry-content-wrapper .flex_column:nth-child(1) {
        -moz-box-ordinal-group: 3;
        -webkit-box-ordinal-group: 3;
        box-ordinal-group: 3;
    }
    
    #after_section_2 .content .entry-content-wrapper .flex_column:nth-child(2) {
        -moz-box-ordinal-group: 2;
        -webkit-box-ordinal-group: 2;
        box-ordinal-group: 2;
    }
    
    #after_section_2 .content .entry-content-wrapper .flex_column:nth-child(3) {
        -moz-box-ordinal-group: 1;
        -webkit-box-ordinal-group: 1;
        box-ordinal-group: 1;
    }

    If it doesn’t work, please create another set of columns then use css media queries. Or try to use a mobile redirect plugin: https://wordpress.org/plugins/advanced-mobile-redirect/

    Cheers!
    Ismael

    in reply to: Enfold update issues (wp 4.3.2 and enfold 3.2.3) #483473

    Hi!


    @giantrv
    : Glad it is working now. :)

    @Ufuk Luker: I tried to login to the site but the credentials above are not working: https://kriesi.at/support/topic/enfold-update-issues-wp-4-3-2-and-enfold-3-2-3/#post-480159

    Regards,
    Ismael

    in reply to: Advanced Layout Builder Elements are not showing #483468

    Hey!

    Please check the browser settings. Make sure that javascript scripting is enabled. If you’re working on chrome, try this: https://support.google.com/adsense/answer/12654?hl=en

    The advance layout builder is working when I check this page: http://www.ronenbekerman.com/wp-admin/post.php?post=29177&action=edit

    Regards,
    Ismael

    in reply to: Elements not showing only white space #483467

    Hey!

    Did you modify anything on the theme files? Is it OK if we deactivate the plugins while checking the site?

    Regards,
    Ismael

    in reply to: Email form layout #483461

    Hey!

    Glad you figured it out. :)

    Regards,
    Ismael

    in reply to: Filter post-meta-infos #483457

    Hey!

    You can modify the loop-index.php file. Create a folder called “includes” inside the child theme folder then copy the loop-index.php file inside. You can remove the post meta info codes that way. There’s no specific filter for that.

    Best regards,
    Ismael

    in reply to: Help with z-index #483454

    Hi!

    You can increase the z-index property of the header container:

    #header {
        z-index: 5000;
    }

    Best regards,
    Ismael

    in reply to: Change in appearance of Enfold:facebook likebox #483451

    Hey!

    You can actually copy both scripts on a text widget. If you generate the likebox widget, you need to copy two scripts. You can grab these scripts inside a text widget. Here’s an example:

    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="fb-page" data-href="https://www.facebook.com/kriesi.at" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/kriesi.at"><a href="https://www.facebook.com/kriesi.at">Kriesi</a></blockquote></div></div>
    

    Cheers!
    Ismael

    Hey!

    I checked the page and I guess you managed to make the flip effect work. The only problem I see is the height:

    .flip_container2 {
        height: 381px;
    }

    Best regards,
    Ismael

    in reply to: Different menu on different pages #483437

    Hey!

    What do you mean by “cheating”? The plugin is specifically made for this kind of menu setup.

    Regards,
    Ismael

    in reply to: Scroll bar on the content of Ajax Portfolio ?? #483436

    Hi!

    I’m sorry but what do you mean by “not as fixed”? A screenshot will help.

    Best regards,
    Ismael

    in reply to: Column and Product Count #483434

    Hey!

    I can’t reproduce the issue on my installation. The Column Count settings is working as expected. Can you please provide a link to the actual page with the issue? And let us know the current Column Count setting.

    Best regards,
    Ismael

    in reply to: Sidebar contents in shop product details page #483431

    Hi!

    Can you please provide a screenshot of the issue? The code above should move the tabs below the single-product-summary container.

    Cheers!
    Ismael

    in reply to: tags showing in table on mobile view #483422

    Hey!

    Thank you for using Enfold.

    It’s a small bug in the table element. Please set the table purpose to tabular then set the responsive styling to scrollable.

    Cheers!
    Ismael

    in reply to: Mega Menu Issue #483420

    Hi!

    This is how the demo looks on IE 11, Windows 8:

    Do you have any browser extension installed? Also, please check if javascript is enabled.

    http://www.technipages.com/internet-explorer-enabledisable-javascript

    Best regards,
    Ismael

    Hey 3DStudio!

    Thank you for using Enfold.

    Set the page to hide the header then use the Image element as logo.

    Best regards,
    Ismael

    in reply to: Remove sidebar from Blog #483336

    Hi!

    Thank you for using Enfold.

    Did you set the Blog Style on Enfold > Blog Layout to “Use the advance layout builder”? If not, set it to that option then check the page.

    Cheers!
    Ismael

    in reply to: Drop Down Menus displaying on one line #483332

    Hi!

    Glad it worked for you. If you need anything else, let us know. :)

    Best regards,
    Ismael

    in reply to: Widget stucked in Appearance -> Widgets area #482874

    Hey videogame!

    Thank you for using Enfold.

    I tried to login to the site but it only redirects me to an acccount page. How can we access the dashboard? Do you have any cache plugin installed? Please try to deactivate the plugin or purge or the cache.

    Regards,
    Ismael

    in reply to: Font size in the comment section #482873

    Hi koelman!

    Thank you for using Enfold.

    You can try this in the Quick CSS field:

    #top .comment_text {
        font-size: 50px;
    }

    If it doesn’t work, please provide a screenshot of the element that you’re trying to change.

    Regards,
    Ismael

    in reply to: Change Font Style #482871

    Hey Manifest007!

    Thank you for using Enfold.

    There is a built in filter in order for you to add your own google fonts. Please refer to this link: http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/

    Regards,
    Ismael

    in reply to: Mobile Menu Not Appearing At All #482870

    Hi RunningDogMedia!

    Thank you for using Enfold.

    There is a javascript error when I checked the site. Please try to deactivate the plugins, remove the browser cache then test it again.

    Best regards,
    Ismael

    in reply to: Sidebar contents in shop product details page #482865

    Hi!

    You can add this code in the functions.php file:

    add_action('init', 'avf_move_product_output');
    function avf_move_product_output() {
    	remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    	remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    	add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 5 );
    }

    Note that this is only going to work if you didn’t enable the sidebar in the single product page.

    Best regards,
    Ismael

    in reply to: Footer widgets not loading properly #482858

    Hi!

    Looks like you added some html codes inside the page. Make sure that all tags or codes are closed properly.

    Best regards,
    Ismael

    in reply to: Masonry imagesize #482854

    Hi!

    You can do something like this in the child theme’s functions.php file:

    function ava_image_sizes() { 
    add_image_size('entry_with_sidebar', 845, 321, array('center', 'top'));
    add_image_size('entry_without_sidebar', 845, 321, array('center', 'top'));
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    If you want to modify the “masonry” thumbnail, adjust the code to this:

    function ava_image_sizes() { 
    add_image_size('masonry', 845, 321);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Again, you have to regenerate the thumbnails by using the plugin suggested above. You can also use this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Regards,
    Ismael

    in reply to: Comment section clean-up #482850

    Hey!

    Can you please provide a screenshot of the elements or objects that you’re trying to remove? Use imgur or dropbox.

    Best regards,
    Ismael

Viewing 30 posts - 46,201 through 46,230 (of 66,075 total)