Viewing 30 results - 91,741 through 91,770 (of 142,812 total)
  • Author
    Search Results
  • #674050

    Hi Monique,

    Great, glad we could help :-)

    I’ll close the topic for you, please open a new thread if you should have any further problems or questions.

    Thanks,
    Rikard

    #674047

    Hi,

    No problem, glad we could help. Let us know if you should need any further help on the topic.

    Regards,
    Rikard

    #674039

    Hi,

    Glad we could help, we’ll keep the thread open in case you should have any more problems or questions on the topic.

    Best regards,
    Rikard

    #674033

    Hi,

    Thanks for the feedback, we’ll keep the thread open in case you should need any further help on the topic.

    Best regards,
    Rikard

    #674028

    Hi mcmoya,

    Please try the following in Quick CSS under Enfold–>General Styling:

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
        display: block !important;
    }
    }

    Best regards,
    Rikard

    #674005

    In reply to: SVG to PNG Fallback

    Hi @purelands,

    Great, glad @Guenni007 could help you out :-)

    Let us know if you should need any further help on the topic.

    Thanks,
    Rikard

    #673998

    In reply to: robots.txt use

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Thanks,
    Rikard

    #673986

    Hey Portfolio_Travel,

    Thanks for getting in touch with us!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    #top #header_meta .phone-info {
        color: #000000;
    }
    }
    
    

    Best regards,
    Jordan

    Sure here it is

    As you can see there is a wide padding around the content (in both desktop and mobile) that I had like to reduce a little, I would like the element to be closer to the main body image and see less “blue content content background”. I can reduce top and down using the CSS code but I would like to reduce to 10pix also on left and right.

    #673966

    In reply to: Shop Mess

    Hey hdpcr,

    You should place your widgets that you would like to display on your shop page in “Shop overview page” widget area. I have added some widgets in there as an example and then went to WooCommerce > Settings > Products > Display and chose to display products.
    You can remove related products by using the code i posted here – https://kriesi.at/support/topic/product-image-size-9/#post-673715

    When there are many listed items in a thread, it gets confusing. From what i understand, combined with other threads, your shop page should be the way you want it. If not, please point out the changes you would like to make in details.

    Best regards,
    Yigit

    Hi,

    We are experiencing issues with our gravity forms plugin and the theme. We were told to contact you from Gravity Forms Support. We got the notice below. We saw a similar issue here: https://kriesi.at/support/topic/gravity-form-not-displaying-when-using-conditional-logic/ and we wanted to see if someone could just take a look on the back end of the website or through our FTP?

    “Your form is failing to appear because the Gravity Forms scripts aren’t running due to multiple copies of jQuery being included. Loading multiple copies of jQuery is known to cause problems so you should remove the second call that is including it the footer. The best way to include jQuery in a theme is to enqueue the WordPress bundled version. This method ensures that no matter how many plugins require jQuery it is only ever included once even if it is already included by the theme.”

    #673959

    Hey hdpcr,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 480px) {
    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content *, #top .av-caption-style-overlay a.av-masonry-item-with-image ins:before, #top #wrap_all .av-caption-style-overlay a.av-masonry-item-with-image del { 
        font-size: 14px !important; 
    }
    .av-catalogue-price {
        position: inherit;
    }}
    

    Best regards,
    Yigit

    #673948

    In reply to: Product Image Size

    Hi Yigit

    Thank you for the tip. So it covers categories and tags too?? About categories i hided them temporary while i get response for other ticket. So i’m not sure if .product.meta { is for categories. After All i may need that link but i couldnt figure out how to customize category page because i need to put some extra headers and special menu etc..

    About image size it ok but the main issue was that i have simple products with no description so product placeholder is too big as its as ou said 400×400 and i wanted to have smaller one.. I found this CSS works fine in some screen resolutions but not in small desktop screens or mobile.
    Maybe I’m too design square :) i expect layouts will align in diferent sizes :)
    Please advice about private.

    .single-product-main-image {
    width: 20%;
    }

    #673944

    Hey Guenter!

    I recently suggested following one – https://kriesi.at/support/topic/implementing-and-using-font-awesome/#post-672729
    Have not heard back from the user but i think it should be working fine.
    Thanks for the tip by the way!

    Cheers!
    Yigit

    #673937

    When I change the Layout to hide the title bar and header visibility, there is a large space at the top of the page which we don’t want….

    When I change the Template to “Blank — No Header, No Footer” the space is gone and the text displays at the top as we want it.

    The only issue is we want the footer to display but not the header.

    Is there an option (preferably CSS) that will hide the header but display the footer?

    Thanks.

    #673933

    btw. on the example above i centered the navigation in this way:

    .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
        display: inline-flex;
        margin-left: 50%;
        transform: translate(-50%);
        white-space: nowrap;
        width: auto !important;
    }
    
    .html_header_top.html_bottom_nav_header #top .main_menu .menu-item-search-dropdown {
        float: left;
    }
    #673930

    ok.
    are you familiar with using a child-theme?
    you can place the following code to your child-theme functions.php:
    you can insert here a link target to the second logo!

    function second_logo($logo) {
    $logo .= '<strong class="logo second-logo"><a href="link-url" target="_blank">' ;
    $logo .= '<img src="path to your second logo - absolut path is best here"/>';
    $logo .= '</a></strong>';
    return $logo;
    }
    add_filter('avf_logo_final_output', 'second_logo');

    than you have to play a bit in your quick css f.e.

    .logo.second-logo {
        float: right;
        position: relative !important;
        z-index: 2;
    }
    
    .responsive #top .logo {
        height: auto !important;
    }

    you can see a result of that here: http://webers-testseite.de/ikom/
    And you see it works with shrinking header too! You than have to define what happens with the second logo in responsive case.
    Some decide to display logo2 to none.

    #673899

    In reply to: Black frame on video

    Hi,

    I am using 15inch laptop as well. Black bars show up due to video format. You can try referring to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ to display different video on smaller screen sizes. I tried few CSS tricks but they look nasty :/

    Best regards,
    Yigit

    #673897

    Hi,

    Please edit your color section elements and give them the same unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png (“your-custom-id” in the example below) and add this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #your-custom-id .av-special-heading.modern-centered {
    margin-top: 0;
    }
    

    then you can simply edit and choose to display same padding

    Best regards,
    Yigit

    #673862

    User IID has been updated. sorry about that.

    The best I have for a mockup is the person who was able to achieve this: http://litc.be/wp-content/uploads/wp_left_top_transparency_navigation.jpg

    This was done with Enfold but the person never mentions how. The parts of the thread showing that code are not viewable.

    Sorry for the delay in getting back to you but I never received an email that you replied. hmm… My email sucks.

    #673840

    Topic: Popads javascript code

    in forum Enfold
    makai1122
    Participant

    Hello i want to know where can i place this code:
    <!– PopAds.net Popunder Code for http://www.tuttofilmweb.com –>
    <script type=”text/javascript” data-cfasync=”false”>
    var _pop = _pop || [];
    _pop.push([‘siteId’, 1444526]);
    _pop.push([‘minBid’, 0]);
    _pop.push([‘popundersPerIP’, 0]);
    _pop.push([‘delayBetween’, 0]);
    _pop.push([‘default’, false]);
    _pop.push([‘defaultPerDay’, 0]);
    _pop.push([‘topmostLayer’, false]);
    (function() {
    var pa = document.createElement(‘script’); pa.type = ‘text/javascript’; pa.async = true;
    var s = document.getElementsByTagName(‘script’)[0];
    pa.src = ‘//c1.popads.net/pop.js’;
    pa.onerror = function() {
    var sa = document.createElement(‘script’); sa.type = ‘text/javascript’; sa.async = true;
    sa.src = ‘//c2.popads.net/pop.js’;
    s.parentNode.insertBefore(sa, s);
    };
    s.parentNode.insertBefore(pa, s);
    })();
    </script>
    <!– PopAds.net Popunder Code End –>

    #673833
    Guenni007
    Participant

    see here: https://kriesi.at/support/topic/icon-packs/#post-673827

    download font-awesome – unzip – goto fontello site and upload via drag & drop the fontawesome-webfont.svg file to the custom svg field.

    Select the icons you like or select all ( very sad there is only the one by one way) – downlaod fontello font – upload it to your enfold options dialog Import/Export !

    #673829
    tlchase
    Participant

    Hello there Kriesi! Thanks again for an awesome theme and ‘awesomer’ support!!

    I’ve been searching through the forums here for any topics on how to change in the Search Results the heading (H2) to a different heading (H3 for example) as well as how to ensure that the Private pages do not appear on the search results.

    Any suggestions would be appreciated.

    Thanks!

    #673822

    HI Rikard,

    Please excuse my delay in replying. A number of issues came up that required more urgent attention.

    I am happy to report that the Custom CSS Class field has now returned after the most recent enfold update. Not sure why or how it went away or came back, but everything appears to be working with it now.

    Since the update, however, my wordpress admin bar is missing from the top of the page when logged in and viewing my site (only when enfold is the active theme, have tried disabling all plugins). I will create a new ticket for that separate issue if I can’t get it worked out by the end of the day (unless you’ve got a quick idea or two).

    Thank you very much for your time. Feel free to close this topic out.

    Portfolio_Travel
    Participant

    How do we increase the size of the text for Slider Caption Title and Caption Text for mobile and desktop? The sizes are large and correct for desktop, but very small for mobile and desktop.

    http://pho.to/AGc5B

    #673776

    Hi again,

    Sorry, my mistake. I still had Ismael’s code (#656376) in the Child theme’s style sheet and that overruled the theme options…

    Seems to be ok now, so please flag this topic as solved. In case I have new questions, I will open a new topic.

    Thanks and regards,
    Monique

    #673761

    In reply to: Tabs In Mobile

    Hi Yigit

    Its just a test page i let both of them just to compare but what i put in the mockup is what im looking for. Tabs shows one under the other in mobile view until tablets but it doest look that good in tablets so i wonder if even in tablet it could bet on under the other like in mobile.

    And yes :) i did use accordion instead but only for desktop view. Tabs in mobile view is nicer as active tab title are highlited in my caase red (in red) according to general styling setup. And once user taps over the tab in mobile view even it’s opens its highlited and in my case there is a lot of black and white lines it shoes realy where user is located. :)
    Thank you very much

    • This reply was modified 9 years, 7 months ago by hdpcr.
    #673732
    #673731
    Monique
    Participant

    Hi guys,

    I know this question has been asked before in the past, but I hope meanwhile there has been a change for the better, so therefore I am asking it again:

    Is it possible to have a different permalink for each seperate portfolio (main) category:
    1) http://www.mydomain.nl/portfolio-category-1/portfolio-category-1-item
    2) http://www.mydomain.nl/portfolio-category-2/portfolio-category-2-item
    3) etc.

    I know in wp > settings > permalink I can change the Portfolio Items Base, but that is for one portfolio (category) only. This slug will be used for all portfolio item, to whatever category they belong.

    In various topics from a while ago I noticed you mentioned the plugin http://wordpress.org/plugins/custom-permalinks/, however that plugin won’t work for me since my site in multilanguage. I cannot differentiate the different languages with this plugin.

    Any suggestions please?

    Thanks in advance.

    Regards,
    Monique

    #673730

    I’ve already solved the issue myself by using the breadcrumb hierarchy in the portfolio-item itself.

    You can flag this topic as solved.

    Thanks anyway & have a nice day,
    Monique

Viewing 30 results - 91,741 through 91,770 (of 142,812 total)