Viewing 30 results - 84,031 through 84,060 (of 138,175 total)
  • Author
    Search Results
  • #705992

    when you go to “theme options” in the top WP menu near edit page there is a menu which was working I think. There we changed a lot of things. Now I remember that this menu is also avaible via “enfold” button. ….so this is no problem ;-)

    Now when you select something from this menu – nothing happened…just the page is reloading and goes where you’ ve been before you click on a button/link. But the copy of this menu in the WP left menu is working fine. So the problem is no so big. If there is an easy solution lets fix it.

    • This reply was modified 7 years, 6 months ago by lafs.
    #705991

    Hi,

    Try to change 1024 to 767 from Ismael’s code, it should look like this:

    @media only screen and (max-width: 767px) {
        .only-desktop {
            display: none !important;
        }
    }
    
    @media only screen and (min-width: 767px) {
        .only-mobile {
            display: none !important;
        }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #705974

    Hey Christophe,

    Sorry for the delayed response.

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Jordan

    Hey pimroll,

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

    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before {
        content: "•";
        position: absolute;
        top: 13px;
        margin-left: -10px;
        font-family: 'Arial';
        font-size: 20px;
    }
    

    Best regards,
    Jordan

    #705962

    Hey Freek,

    Yes, responsive element just means the elements/layout adapts with the device. However as for parts of the images which are cut off, the fullscreen will try to fit the image to the device viewing it depending on their screen size. For example in your site, try to view the link to the image in the Private Content, you will notice that there’s white space on the right, what fullscreen slider is trying to achieve is to expand the width of the image to cover the whole screen however expanding the width to 100% would also mean that the height of the image will also be expanding more than the height of the monitor, therefore the top and bottom part of the image are cut off (height or width is sacrificed just to preserve the ratio of the image). But if you really want it to show all parts of the image, try to add this code in Quick CSS (located in Enfold > General Styling):

    .avia-fullscreen-slider .avia-slideshow>ul>li {
        background-size: 100% 100% !important;
    }

    It will show all parts of the image but the ratio will not be preserved. Hope this helps. :)

    Best regards,
    Nikko

    #705950

    Hi,

    1.) Please refer to this thread: https://kriesi.at/support/topic/override-the-global-avia_config-within-child-functions-php/ or you may want to use Simple Image Sizes plugin.

    1.b) Are you using a default editor and use it as a blog? or are you using Advance Layout Builder and the blog module?

    2.) I have tested it on my end but since on your end it’s not working Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Also I also request for ftp access, since it’s very critical to modify functions.php on wp theme editor.

    Best regards,
    Nikko

    #705949
    lafs
    Participant

    Hi there,

    first, very good theme, Bravo!

    Everything was fine in the beginning but after we’ve created the whole site we saw that “the theme option” doesn’t work. When you click on the link it just reload and nothing happens. We’ve installed WPML and Yoast plugin. When we’ve disabled them it’s the same.

    #705948

    Hey Tilman,

    Thanks for reaching out to us!

    Unfortunately this is a mobile device limitation. Android and iOS intentionally block the autoplaying of videos so as not to exceed mobile data limits.

    Let us know if there is anything else we can assist you with.

    Best regards,
    Jordan

    #705947

    In reply to: Header 1 vs responsive

    Hi,

    I could find this code inside this media query: @media only screen and (max-width: 767px)

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        font-size: 0.8em;
    }

    And replace it with:

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        font-size: 0.8em;
        word-break: break-all !important;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    #705944

    Hi,

    Please replace the code I gave above to:

    @media only screen and (min-width:768px) and (max-width:1024px) {
      #top .flex_cell.av_one_half {
        padding: 15px !important;
        font-size: 14px;
      }
    
      #top .flex_cell.av_one_half.av-zero-padding {
        padding: 0 !important;
      }
    
      #top .flex_cell.av_one_half .av-special-heading {
        padding-bottom: 8px !important;
      }
    
      #top .flex_cell.av_one_half .av-special-heading-tag {
        font-size: 24px;
      }
    
      #top .flex_cell.av_one_half .av-subheading {
        font-size: 18px !important;
      }
    }

    Let us know if it works. If not, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Best regards,
    Nikko

    #705935

    In reply to: Pagination issue

    Hi,

    Thanks for your patience. The issue is fixed. I have found this code in the style.css of your child theme:

    .paged #after_section_1{
    display:none !important;
    }

    I have commented it out but it seems not to reflect even after purging the cache, so I added this code in Quick CSS (located in Enfold > General Styling):

    #top.paged #after_section_1 {
        display: block !important;
    }

    Let us know if it’s good on your end also :)

    Best regards,
    Nikko

    #705896
    JeeBar
    Participant

    I need to make my prev and next post buttons (the little tabs at the edge of individual posts) a little taller to accomodate long titles.

    I tried this per this other thread, but it’s not working.

    #top .avia-post-nav {
        height: 200px !important;
    }

    https://solace.com/blog/products-tech/solace-virtual-message-router-vmr-release-7-2

    #705895
    oestersund
    Participant

    Hi,
    on this post https://kriesi.at/support/topic/autoplay-youtube-video/#post-705878 you gave me the solution how to autoplay a video on my page https://www.fitgutschein.de/ablauf-so-funktioniert-es/
    ……………………………..
    Can you try to use a text block instead of video module and paste in the embed code not the url, and ?rel=0&autoplay=1 inside the url of embed code it would look like:

    <iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/XWze2cCdt40?rel=0&autoplay=1&#8243; frameborder=”0″ allowfullscreen></iframe>
    ……………………………….

    The topic was closed then as “resolved”, but now `ve seen that it works on pc only, not on mobile.
    What ca I do?

    Thx a lot & best regards, Tilman

    #705887

    Hey Armstrong88!

    Please add the following to your custom CSS

    #top .no_margin.av_one_third { width: 30% !important; }

    let us know if we can do anything else.

    Best regards,
    Basilis

    #705869

    Note: I took the featured image off of that page as I needed to publish and advertise it. I’ve created a test page to show you – http://www.dominiquehurley.com/test-page/

    When I get your code, I’ll re-insert the featured image so it shows up when folks share it on FB, but I don’t want featured images to show up at the top.

    Note 2 – it didn’t change my old Pages, just reverted to your default for new pages. Thank you.

    #705867

    sorry i had it in a text block element too – but not with the iframe tag – but in the manner above

    edit: this is a test page. i placed an image (screenshot of the film) alb element and on the image with link settings to manually.
    the link was than with all instructions:

    http://www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&vq=hd720&autoplay=1&iframe=true frameborder="0" allowfullscreen

    #705864

    you can link to it in this way too:

    the trick is that you can combine those : autoplay rel and iframe by first a ? than with & – see example:

    http://www.youtube-nocookie.com/embed/XWze2cCdt40?rel=0&autoplay=1&iframe=true frameborder="0" allowfullscreen

    • This reply was modified 7 years, 6 months ago by Guenni007.
    #705842

    Hi,

    I tried to troubleshoot this issue but the login credentials you provided do not work for me. Would you mind checking once again and then send us working login credentials?

    The user role for the account you send us should be set to ‘administrator’ so we can try to disable all plugins and add custom code (if necessary) to resolve the issue.

    Would you mind uploading the screenshot/mockup to imgur.com or dropbox gallery without any zipped attachment and share the link here :)

    It’s not clear about which space you are refering to. However as I understand you are trying to remove the horizontal border on top of the contact form correct?

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

    			
    #contact.container_wrap {
    	border-top: 0px!important;
    }
    

    Best regards,
    Vinay

    • This reply was modified 7 years, 6 months ago by Vinay.
    #705818

    Hi,

    The captcha also appears correctly on my end however you can still modify the scrolled location by changing the value 200 to 250 or more in the line

    scrollTop: target.offset().top - 200

    Let us know if you have any further questions.

    Best regards,
    Vinay

    #705803

    In reply to: Blog page layout

    Hey JennyGr,

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

    
    .entry-content-header {
    position:absolute;
    top	: 0;
    }
    
    .big-preview.single-big{
    	padding-top: 70px;
    }
    

    Best regards,
    Vinay

    #705802

    In reply to: Center Top-Bar

    Hi,

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

    #top #header_meta .phone-info {
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
    }
    

    Best regards,
    Vinay

    #705778

    Hi Nikko, ( or someone else)
    I use this thred to adress some other things that go wrong on different media.

    1.On smartphone the tagline is so big it covers the photo. Its ok on desktop and tablet. Shall we do the same here? Create a text element that shows only shows on smartphone and leave the surrent situation on desktop and tablet? Can you provide code and tell me where to put it, or do it yourself like above?

    2. On the page “Over Dick Zirkzee”, the tagline and button are also covering the photo on smartphone. Same solution? Can you provide code and tell me where to put it, or do it yourself like above?

    3. In this case, the page “Over Dick Zirkzee” The tablet gives another strange effect , the button and tagline are shifted to the right . On desktop it is right.

    thanks in advance

    #705775
    dominiquehurley
    Participant

    Hi – Sorry, I looked through my thread as we’d taken care of this a long time ago, but I can’t find it. Old issues are coming up again.

    I have a new Page and chose a Featured Image. We’d had it programmed so it wouldn’t appear at the top of the Page, but it’s happening again.

    What’s the code I need to insert to have this stop happening? I want my title to be at the top and no featured image. But I need to put a Featured Image in case folks share on FB, etc.

    Thanks.

    #705758

    In reply to: Layerslider and mobile

    Hi Justin!

    Thank you for using Enfold.

    One option is to hide the captions on mobile. Or add a custom class or id attributes to the caption layer then use css media queries to adjust the css properties (font size, position etc) on mobile. Edit one the layer then go to the Attributes panel. Add the css modifications in the Quick CSS field.

    // https://kriesi.at/support/topic/layerslider-text-layers-not-responsive-in-enfold/#post-646062
    // https://kriesi.at/support/topic/portions-of-advanced-slider-cut-off-on-surfacepro/#post-693554
    // https://kriesi.at/support/topic/the-text-on-my-layerslider-text-box-is-inconsistent/#post-586596

    Best regards,
    Ismael

    #705756

    Hi domchocolate!

    Thank you for using Enfold.

    Please add this code in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .slide-entry {
        width: 48% !important;
        margin-left: 4% !important;
    }
    }
    

    Make sure to add it below this one.

    .template-search .post-entry {
        position: relative;
        clear: both;
    }

    Regards,
    Ismael

    Hey!

    Thank you for the info.

    We found the issue with the avia.js > avia_sticky_submenu function, line 1415:

    					if(fixed_frame)
    					{
    						modifier += fixed_frame;
    					}
    

    This code will always apply the height of the av-frame-top container to the modifier regardless of the container’s display property. The frames are hidden on screens lower than 989px so we have to add another condition.

    Line 1409:

    framed      = $('.av-frame-top').css('display') !== 'none';
    

    And line 1416:

    if(fixed_frame && framed)
    

    Regards,
    Ismael

    #705751

    Hi!

    I’m sorry but this is not possible with the default WordPress search function. You have to create a separate page for each section if you want them to be searchable. You can also add a fullwidth sub menu element or anchor links on top of the page so that users can browse through the sections in the page.

    Cheers!
    Ismael

    #705739

    Hey DentalUnion,

    Thanks for reaching out to 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){
    .responsive #top #main {
        padding-top: 150px !important;
    }
    }
    

    Best regards,
    Jordan

    #705736

    In reply to: Mobile Header Height

    Hey!

    Thank you for the info.

    1.) Please add this in the functions.php file to reduce the height of header on mobile.

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
        max-height: 70px;
    }
    }

    2.) Do you want to adjust the position of the caption? Place insert this code inside the css media query above.

    .caption_bottom .slideshow_caption .slideshow_inner_caption {
        bottom: 200px;
        left: 0;
    }
    
    #top #wrap_all .avia-caption-content p {
       font-size: 15px !important;
        line-height: 1.3em !important;
    }

    Cheers!
    Ismael

    #705729

    Hey appsolutelymediallc,

    Thanks for reaching out to us!

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

    #top .av-control-minimal-dark .avia-slideshow-arrows a:before {
        border-color: #719430;
    }
    
    #top .av-control-minimal-dark .avia-slideshow-arrows a {
        color: #719430;
    }
    

    Best regards,
    Jordan

Viewing 30 results - 84,031 through 84,060 (of 138,175 total)