Forum Replies Created

Viewing 30 posts - 45,121 through 45,150 (of 66,152 total)
  • Author
    Posts
  • Hey!

    The OP should be notified via email. If you can open a new thread and provide a screenshot of the modifications that you like to do, we’ll try our best to help. This is Kriesi’s css modification in the sort container:

    #top .sort_width_container {
        background: transparent url(/wp-content/themes/kriesi/images/small-banner1.jpg) top center no-repeat;
        width: 146%;
        left: -23%;
        margin-top: -50px;
        padding: 35px 50px 15px 50px;
    }
    
    .sort_by_cat {
        width: 90%;
        display: table;
        height: 120px;
        table-layout: fixed;
        margin: 0 auto;
        max-width: 800px;
    }
    
    #top .sort_by_cat a {
        display: table-cell;
        float: none;
        vertical-align: top;
        text-align: center;
        position: relative;
    }
    
    #top .av-cat-count {
        position: relative;
        display: block;
        height: 60px;
        width: 60px;
        line-height: 57px;
        display: block;
        border-radius: 100px;
        text-align: center;
        margin: 0 auto;
        font-size: 13px;
        font-weight: bold;
        background-color: transparent;
        background-color: rgba(255, 255, 255, 0.2);
        border: 2px solid #FFF;
        color: #FFF;
    }

    You might need to modify the portfolio.php file for the category count.

    Cheers!
    Ismael

    in reply to: Logo position on IE glitch #516224

    Hey!

    Please check it now. We added a max width property on the logo container.

    Cheers!
    Ismael

    in reply to: Masonry issues #516218

    Hey jorge42189!

    Thank you for using Enfold.

    Could you please provide a screenshot of the issue? I checked the page and the masonry items looks OK.

    Cheers!
    Ismael

    in reply to: When adding a new Special Heading content is deleted. #516215

    Hey!

    I was able to reproduce the issue on the page but I’m not sure what’s causing it. I checked the first text block and there’s an empty strong tag:

    <p style="text-align: center;"><strong>Uddannelsesforløbet finder sted i Aarhus</strong><strong>
    </strong><strong>d. 9. november - 18. december
    & d. 7. december - 29. januar</strong></p>
    

    Please check the whole page for any incorrect html tags. Is this happening on other pages?

    Cheers!
    Ismael

    in reply to: Masonry & Magazine shortcodes bugs #516210

    Hey faithbackpacker!

    Thank you for using Enfold and the included fix. What do you mean by “breakpoints”? Or try to add the summary in the Excerpt box.

    Cheers!
    Ismael

    in reply to: Social links position moved after update #516192

    Hi Simon!

    Thank you for using Enfold.

    Did you use the advance layout builder to add the social section? Or did you add it in a template file? If you check the html markup, it is currently rendered at the very top of the content. Please post the login details here so that we can check the site.

    Regards,
    Ismael

    in reply to: Subtitle in masonry post excerpt overlay #516186

    Hi Victor!

    Thank you for using Enfold.

    Please edit line 609:

    $items .= 	"<{$html_tags[0]} id='av-masonry-".self::$element."-item-".$entry['ID']."' class='{$class_string}' {$linktitle} {$markup} data-sub='{$sub}'>";
    

    .. replace it with:

    $sub = '</h4>'.the_subtitle().'</h4>';
    $items .= 	"<{$html_tags[0]} id='av-masonry-".self::$element."-item-".$entry['ID']."' class='{$class_string}' {$linktitle} {$markup} data-sub='{$sub}'>";
    

    Add this in the Quick CSS field to display the subtitle on hover:

    #top .isotope-item:hover:before {
        content: attr(data-sub);
        display: block;
        width: 100%;
        height: 500px;
        position: absolute;
        top: 0;
        left: 0;
        color: red;
        transition: none;
        z-index: 1000;
    }

    Adjust the values if necessary.

    Cheers!
    Ismael

    in reply to: Tablet Asus / Samsung header problem #516184

    Hey!

    I checked the site on screenfly and it looks OK on Galaxy Tab screen view:

    http://quirktools.com/screenfly/#u=http%3A//www.vrouwenkoor-etcetera.nl/&w=600&h=1024&a=23

    I also tested the site on chrome’s emulator tool and it looks the same as the link above. Did you test it on an actual mobile device?

    Regards,
    Ismael

    Hey!

    I checked the link above but I don’t see any related posts so I think you modified something. Please post the login details here so that we can check the site. Did you translate the tags properly? Please refer to this link: https://wpml.org/documentation/getting-started-guide/translating-post-categories-and-custom-taxonomies/

    Regards,
    Ismael

    Hi!

    Remove this line of codes:

    <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
    

    And this one:

     the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'arbitrary-instance-'.$id,
                    'before_widget' => '<div class="widget avia_combo_widget">',
                    'after_widget' => '</div>',
                    'before_title' => '<h3 class="widgettitle">',
                    'after_title' => '</h3>'
                ));

    Best regards,
    Ismael

    in reply to: Breadcrumbs Problems #516178

    Hey!

    Please add this in the functions.php file:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    	remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Regards,
    Ismael

    in reply to: Menu change (custom link page) does not work #516174

    Hi!

    Thank you for using Enfold.

    Please edit the page then look for the “Permalink:” option under the Title. You can change the permalink or the url of the page manually. If you want to remove the “homepage” part in the url, deselect the parent attribute.

    Regards,
    Ismael

    Hi!

    Can you please provide a screenshot of the changes that you like to make? I checked the site but it looks broken. The sections are inside the strong tags so you probably forget to close these tags properly:

    <strong><strong>
    SECTION MARKUPS HERE:
    
    					<!-- end main -->
    		</strong></strong>
    

    Cheers!
    Ismael

    Hi!

    What is the screen resolution of your android device? Please try this instead:

    @media only screen 
      and (min-width: 480px) 
      and (max-width: 768px) 
      and (orientation: portrait) {  
    .avia-slideshow-inner, .avia-slideshow-inner * {
        height: 500px !important;
    }
    }

    Adjust the value if necessary.

    Regards,
    Ismael

    in reply to: Making the product grid 'flow' like Pinterest-style #516151

    Hey!

    Thank you for the update. Try to set a minimum height to the product image:

    #top .thumbnail_container img {
        min-height: 362px;
    }

    This will distort the product image a bit. The better thing to do is to upload images with the same size or dimension.

    Best regards,
    Ismael

    in reply to: Custom button and widget #516149

    Hi!

    Thank you for the update. Please post the login details here. We’ll try to add it for you.

    Best regards,
    Ismael

    in reply to: Blog Categories #516147

    Hey!

    We already asked you several times to send the login credentials including the FTP details but you seem to be ignoring it. If you’re not comfortable with us knowing your login credentials, all you have to do is to override the functions.php and functions-enfold.php file with a fresh copy. After that, you can add the suggested code in this post: https://kriesi.at/support/topic/blog-categories-6/page/2/#post-514930

    Also make sure that you copy the codes right from the forum, not from your email. Thank you.

    Cheers!
    Ismael

    Hi!

    Please disable the cache plugin then hard refresh the page or test it on another browser.

    Cheers!
    Ismael

    Hey!

    Actually, we’re not exactly sure what’s the problem. It seems to be an issue specific to your installation so probably from a plugin or a custom modification. As a temporary fix, you can follow the “html entity” workaround. If possible, refrain from adding the h4 tag until you finish building the content of the page then make sure to add the non breaking space entity code right after the number. I don’t think this issue will happen on every page unless all titles end with numbers like the example above.

    Cheers!
    Ismael

    in reply to: facebook share problem #515038

    Hi!

    No problem. Regarding the facebook issues, please refer to my last post: https://kriesi.at/support/topic/facebook-share-problem/#post-514891

    We will close this thread for now but feel free to open a new thread after you review the website we provided on the previous post. If you could open a ticket in the yoast seo forum, that will help as well.

    Cheers!
    Ismael

    in reply to: facebook share problem #515030

    Hi!

    I think it’s OK now: http://www.wiwaldi.at/portraits/karina-und-daniel-fasch/

    Just add a text block on the empty 1/5 columns beside the heading “Karina und Daniel Fasch alpha coffee e.U. Kaffeeröster(in)

    Best regards,
    Ismael

    in reply to: facebook share problem #515018

    Hi!

    I actually didn’t do anything on the site except for the W3 Total Cache plugin deactivation. And I activated the Enfold debug mode. You have a lot of open threads in the forum. Please check those as well, maybe one of the modifications break the page. The bottom content of the “http://www.wiwaldi.at/portraits/dieter-halama/&#8221; looks the same as the “http://www.wiwaldi.at/portraits/karina-und-daniel-fasch/ “. You can copy the shortcode from the debug mode then adjust the values.

    Best regards,
    Ismael

    Hey!

    Oh. Right. I was able to reproduce the issue. It’s weird. If you add a non breaking space (http://www.w3schools.com/html/html_entities.asp) html entity code after the number 3130, it works fine. If you remove the 3130, it works OK. It mistakenly read the number to something else. Try this:

    <h4>The Difference Between FINRA Rules 3120 and 3130 &n bsp;</h4>
    

    Remove the space between the letter “n” and “b” in the html entity code. http://firstmarksolutions.com/wp-admin/post.php?post=1205&action=edit

    EDIT: I can’t reproduce the issue on my own installation.

    Cheers!
    Ismael

    in reply to: Child theme #514994

    Hi!

    What happens when you remove this line of code?

    do_action('prdctfltr_output'); /* This is the part you should add to initiate the Product Filter in your Enfold template */
    

    I know it will remove the new filter. Is the footer OK when you remove that line?

    Cheers!
    Ismael

    in reply to: (fixed) #514991

    Hey VerticalMotion!

    Great! I don’t know what it is but I’m glad it is fixed. Let us know if you have any questions regarding the theme. :)

    Best regards,
    Ismael

    in reply to: LayerSlider Issues #514989

    Hi intaglio14!

    Thank you for using Enfold.

    The first slide looks OK on both mobile and desktop. Please remove browser cache then test the page again. What is the mobile device and the browser?

    Regards,
    Ismael

    in reply to: Footer widgets / icon list responsive behaviour issue #514988

    Hey!

    I can see the issue on this page: http://www.taxi-cover-plus.com/other-insurance/

    This issue happens randomly so we can’t lock out the problem. One way to fix this is to put all columns inside a new color section just like what I did in the page. Please check it.

    Best regards,
    Ismael

    Hi!

    I’m sorry but I can’t reproduce the issue either. I added a text block here with heading tags and it loads fine:

    http://firstmarksolutions.com/wp-admin/post.php?post=1205&action=edit

    You can find the text block at the very top of the page. I also used the same heading tags in a code block.

    Regards,
    Ismael

    in reply to: Style Widgets on dark vs. light background #514970

    Hi concoa!

    Thank you for using Enfold.

    Please post the actual url to the page and a screenshot of the changes that you want to make. You can alter or modify the widget styling via Quick CSS field. Use imgur or dropbox for the screenshot.

    Regards,
    Ismael

    in reply to: testimonial background color #514968

    Hi!

    Thank you for the url. Please add this in the Quick CSS field:

    .main_color .avia-slider-testimonials .avia-testimonial-content {
        background-color: pink;
        border: 0;
    }

    Adjust the color value.

    Cheers!
    Ismael

Viewing 30 posts - 45,121 through 45,150 (of 66,152 total)