Forum Replies Created

Viewing 30 posts - 7,921 through 7,950 (of 11,891 total)
  • Author
    Posts
  • in reply to: Fullscreenslider and Parallax #1004646

    by the way on this sample it is like on my setup: https://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/

    this here should be the expected parallax behavior, except for the fact that only one caption container for three slides can be seen here. So I wonder, how did you create this example? On your own demo page it is like in my example that the scrolling behavior of captions and background is the same. Since the parallax goes on the unordered list, and both background and captions are in it.

    in reply to: Fullscreenslider and Parallax #1004642

    Hm – to be absolutely shure – i deleted my edited alb elements to have all original Slider files to work ( 3sliders 1 helper)
    than i updated again – by delete enfold folder and upload a newly downloaded to my webers-testseite.de.

    On Fullscreenslider – my captions stay in the li

    on this test page https://kriesi.at/documentation/enfold/example-of-custom-size-fullscreen-slider/ to show how to style the full-screen slider not to have these dimensions the captions goes on parallax case outside the li-containers:

    this is what i mentioned above that the parallax goes to ul and captions are outside.
    But how (that is my question mark in the image) does this work only with one caption for all 3 li’s ?
    on switching to a different slide no change on the captions ( even if the captions are the same – there must be a different div for it.

    ???

    in reply to: adding parameter to youtube urls #1004404

    thanks for that detailed answer.

    oha – much to learn. But you should never give up – not even at an advanced age.
    I think the idea of creating a new alb element for that seems to be a good idea. But these are more academic projects than practical necessities.
    On practice it is much easier to replace in Enfold Shortcode (debug mode enabled) the image urls.
    So when i got time i will try to get familiar more with the youtube api and do the custom alb.
    Thanks again

    in reply to: adding parameter to youtube urls #1004309

    By the way: there is actually no longer a contribution to featured Requests ?

    it would be nice to have for the img alb an input field for external images.

    On Textblock element – insert media there was the “insert from url” inputfield !

    in reply to: adding parameter to youtube urls #1004304

    so i got this code for now:
    (just for that test page-id: 33150)

    function youtube_fix(){
    if (is_page(33150)){
    ?>
    <script>
    (function($){ 
    
    		$('a.avia_image[href*="www.youtube"]').each(function() {
    			regex = /(?:youtube(?:-nocookie)?\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|e(?:mbed)?)\/|\S*?[?&]v=)|youtu\.be\/)([a-zA-Z0-9_-]{11})/;
    			var ID = $(this).attr("href").match(regex)[1];
    			$(this).find('img').attr("src", 'https://img.youtube.com/vi/'+ ID +'/maxresdefault.jpg');
    		});
    
    	$('body').on('DOMNodeInserted', function(){
    		$('iframe.mfp-iframe[src*="youtube.com"]').each(function() {
    		var _src = $(this).attr("src")
    		$(this).attr("src", _src +  '&cc_load_policy=1&enablejsapi=1&ecver=2&playsinline=1&rel=0&showinfo=0&color=white&iv_load_policy=3')
    		});
    	})
    })(jQuery);
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'youtube_fix');

    but if there was no maxresdefault.jpg it should show the originally used image – how can i insert here an if else ??
    see now test-page – the one on the left got a maxres Thumbnail – the right one not –
    the 0.jpg always exists – but has black bars top/bottom
    https://webers-testseite.de/youtube-videotestseite/

    in reply to: How to get video playing on Smartphone? #1004288

    well – maybe you followed the fix of ismaels link – i can see the fallbackimage now.
    and by the way you did not mention that it is a cdn video. Sometimes this will be a source of troubles too.

    in reply to: Plugin update needed – no way to update it #1004190

    The extended layer slider is embedded in the Enfold theme.
    It is therefore included for you, so to speak, in the price. If you want to get a newer layer slider before the next Enfold update, you only need to invest the 19 Euro and buy the plugin as a standalone plugin. I don’t mind receiving the update a little bit later.
    What would be nice if the update display no longer showed the small red dot. You always feel compelled to do something.

    in reply to: Menue mit individuellen Menuebildern #1003937

    without a link i’m out here.
    It could be all (including line-height) Sorry

    And i think there will be no good way with a shrinking header

    last speculation:

    .bildlink.menu-item {
        overflow: visible !important;
    }
    
    .bildlink a {
        line-height: 10px !important;
        overflow: visible !important;
        text-align: center !important;
    }
    
    .bildlink.menu-item img {
        display: block;
        width: auto !important;
        height: 50%;
        position: relative;
        margin: 0 auto;
    }
    
    .bildlink .avia-menu-text {
        line-height: 20px;
        vertical-align: top;
    }
    in reply to: Menu with center logo and Shrinking Header #1003831

    next wow effect: https://webers-testseite.de/cynthia/logomove-2/

    I just coupled the y-position and the margin ( from negative values to 0 ) with the shrink effect on avia-snippet-sticky-header.js

    in reply to: Making Parallax Scroll in Home Slider #1003825

    If you made a mistake in editing the functions.php of your child theme, or even the parent theme. And if you shot your page, just access your page via ftp and undo the changes there, or restore a clean file.

    in reply to: Trying to change image on mouseover #1003783

    do you mean something like this – move over the image beyound the banner:
    https://art-varij.de/
    you don’t need a code block for it – just take a image alb element ( but do not choose the scale effect on it)
    i gave to the image alb element a custom-class: seen

    this is the css for it:

    .seen .avia-image-container-inner {
    background: rgba(0, 0, 0, 0) url("/wp-content/uploads/second-image.jpg") no-repeat scroll 0 0 / cover ;
    }
    
    .seen .avia-image-container-inner img {
        opacity: 1;
        -webkit-transition: opacity 2s linear;
         transition: opacity 2s linear;
    }
    
    .seen:hover .avia-image-container-inner img {
        opacity: 0;
        -webkit-transition: opacity 2s linear;
         transition: opacity 2s linear;
    }
    in reply to: Menu with center logo and Shrinking Header #1003287

    this goes to the initiator of the thread:
    you have lost the custom class to the menu-item !!! logoimg. – Not the title to img !

    in reply to: Menue mit individuellen Menuebildern #1003214

    i do not see the link in private content. – i’m a participant as you are. Only Mods could see that content.
    So if you can not make your link public – then you have to wait til mods are here.

    Text in two lines – you can try in navigation label to set a line-break between your text parts ( <br> or <br/> )

    <img src="https://your.site/image.jpg">Für<br/>Unternehmen

    in reply to: Move content to top for each tab when using Tab Section #1003211

    Yes Victoria : Each Tab got this input field to choose

    in reply to: Burger menu + button #1003209

    hi Camilla – you can always contact me via my avatar there is my website – so you got my contact.
    the other thread is closed to new answers – so here is my answer now.

    in reply to: How to make phone number tel link in team member block #1003197

    didn’t you use the team member alb element ?
    (click to enlarge)

    in reply to: Menue mit individuellen Menuebildern #1003194

    Well if there is a hidden private area – i do not see it because i’m participant as you are

    in reply to: Making Parallax Scroll in Home Slider #1003191

    Edit: i changed the parallax script so – it might be ok now

    see slide 4 for your example

    • This reply was modified 7 years, 4 months ago by Guenni007.
    in reply to: Making Parallax Scroll in Home Slider #1003173

    Well the link to my solution is here – this was not so easy – but you have to adjust it to the need of your slider .
    https://webers-testseite.de/parallax-on-fullwidth-slider/

    but if you only got one image on top – why don’t you take the color-section on 100% height. And declare the background-image to a parallax one.?
    that is very easy – enfold default settings

    in reply to: Menue mit individuellen Menuebildern #1003172

    you even can do a hover on those images like:

    .bildlink.menu-item a:hover img {
        transform: scale(0.95) translateY(-3px);
        -webkit-filter: hue-rotate(180deg) saturate(400%);
        filter: hue-rotate(180deg) saturate(400%);
    }
    in reply to: Menue mit individuellen Menuebildern #1003167

    First – you don’t need the custom link – if these Menupoints are real links.
    just open the menu-item at that littel arrow on the right. And on Navigation Label you can insert Ricards Code.

    If you got a link to your page – it is much easier to give any advice.

    i gave to those menu-items a custom-class : bildlink
    (if you have all menu links like this – get rid of that bildlink in the code)
    (if not : you know how to give a custom class to menu-items?)

    then to quick css:

    .bildlink .avia-menu-text {
        line-height: 20px;
        vertical-align: top;
    }
    
    .bildlink.menu-item img {
        display: block;
        width: auto !important;
        height: 50%;
        position: relative;
    }

    we had to find then a solution for the hamburger menu too – but with link it will be easier

    in reply to: Making Parallax Scroll in Home Slider #1003134

    can you post a link on public – then i will have a look!

    in reply to: Increase font size for Portfolio Sorting #1003024

    can you please post the link on public. the link above does not work.
    is it that page her: http://marckdesign.net/portfolio/

    
    #js_sort_items * {
        font-size: 20px !important;
    }

    the asterisk means that every following element got that css

    yes – your are absolutely right – but it has to work – and on parent update these files are not lost.

    in reply to: Menu with center logo and Shrinking Header #1002800

    you did not answer to my questions:
    are you working with a child-theme: No – i think
    1) so the changings you made are overwritten by the parent theme ( thats why a child is so usefull)
    so please upload my avia-snippet-sticky-header.js again to your parent-theme – replacing the original.

    2) the customclass on the menu-item with the logoimage is gone.

    in reply to: Increase font size for Portfolio Sorting #1002665
    .av-masonry-sort * {
        font-size: 20px;
    }

    portfolio – no cat.

    if you only want the “terms” bigger:

    .av-sort-by-term * {
        font-size: 20px;
    }

    PS: your link above is gone – so i can not test it at your environment !

    in reply to: How to make phone number tel link in team member block #1002656

    you can do it as “Add/Edit Social Service or Icon Links” and choose f.e. a telephone icon – and as “icon-link” – put in: tel:+492289768293

    or you do it in the “Team Member Description” and the input will be something like:
    Phone: <a href="tel:+492289768293">0228 9768293</a>

    see here: https://webers-testseite.de/same-height/

    in reply to: Lightbox videos with short code #1002638

    the f.e. av_uid=’av-zi631r’. comes from Enfold itself – it will be added although you have not set it.

    in reply to: Lightbox videos with short code #1002634

    and take the image: with: maxresdefault.jpg. (that is without black bars !

    [av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-top' av_uid='av-zi631r']
    [av_image src='https://img.youtube.com/vi/W9On5fAdu8I/maxresdefault.jpg' align='center' link='manually,https://www.youtube.com/watch?v=W9On5fAdu8I'][/av_image]
    [/av_one_third]

    but the addendums are for me important – because i do not want to have on pausing the video:
    see link
    – right image (last 1/3) and pause it.
    go to the end of the video and see.

    • This reply was modified 7 years, 4 months ago by Guenni007.
    in reply to: Lightbox videos with short code #1002628

    and something new i have learned:
    if you take the image: https://img.youtube.com/vi/W9On5fAdu8I/maxresdefault.jpg
    there will be no black bars !

Viewing 30 posts - 7,921 through 7,950 (of 11,891 total)