Forum Replies Created

Viewing 30 posts - 5,491 through 5,520 (of 11,875 total)
  • Author
    Posts
  • in reply to: Display Pictures by Number Order #1221753

    these are parameters to wp_query: https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
    so i guess no direct chance to have it here

    in reply to: white background image is a little bit blue #1221640

    – see this site here: https://webers-testseite.de/cynthia/
    i make a svg image that is near to your image divider.

    This code in child-theme functions.php:

    function insert_dividers(){
    ?>
    <script>
    (function($){
    
    // just give a custom-class to the color-section or the slider : divider
    // and a custom class for top or bottom position: top / bottom
    // so there is in that input field f.e.:  "divider bottom"
      $('.avia-section.divider.top').prepend('<svg version="1.1" class="top" title="big_arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="200px" viewBox="0 0 1500 200" preserveAspectRatio="none"><path class="jan" d="M766.69,192.84c-10.94,2.88-22.43,2.88-33.37,0L0,0h0v200h1500V0L766.69,192.84z" fill="#EEEEEE"/></svg>');
      $('.avia-section.divider.bottom').append('<svg version="1.1" class="bottom" title="big_arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="200px" viewBox="0 0 1500 200" preserveAspectRatio="none"><path class="jan" d="M766.69,192.84c-10.94,2.88-22.43,2.88-33.37,0L0,0h0v200h1500V0L766.69,192.84z" fill="#EEEEEE"/></svg>');
      $('.divider.top .avia-slideshow .avia-slideshow-inner').after('<svg version="1.1" class="top" title="big_arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="200px" viewBox="0 0 1500 200" preserveAspectRatio="none"><path class="jan" d="M766.69,192.84c-10.94,2.88-22.43,2.88-33.37,0L0,0h0v200h1500V0L766.69,192.84z" fill="#EEEEEE"/></svg>');
      $('.divider.bottom .avia-slideshow').append('<svg version="1.1" class="bottom" title="big_arrow" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100%" height="200px" viewBox="0 0 1500 200" preserveAspectRatio="none"><path class="jan" d="M766.69,192.84c-10.94,2.88-22.43,2.88-33.37,0L0,0h0v200h1500V0L766.69,192.84z" fill="#EEEEEE"/></svg>');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'insert_dividers');

    this to quick css:

    .avia-section.divider {
        position: relative !important;
    }
    
    .avia-section.divider .container a {
        z-index: 10;
    }
    
    .avia-section.divider svg {
        position: absolute;
        z-index: 5;
        width: 100vw;
    }
    
    .avia-section.divider svg.top {
        top: -2px !important;
        height: 150px;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    
    .avia-section.divider svg.bottom {
        bottom: -2px !important;
        height: 100px;
    }

    Now – how to insert the dividers:
    you only have to give to a color-section – or a slider the class f.e. : divider bottom
    then the divider will be inserted as inline svg. On that you can influence the fill color:

    .avia-section.divider svg.top path {
      fill: #fff;
    }
    .avia-section.divider svg.bottom path {
      fill: #fff;
    }

    e.g. on that example page you see the section with the button “get in touch”
    the following color-section has a different background-color!
    just solve this by:

    #av_section_3 svg.bottom path {
        fill: #c5e3ea;
    }

    or on top i gave to that color-section the custom-classes: divider top bottom
    so there are two dividers in the same section

    in reply to: white background image is a little bit blue #1221629

    the image above is a rgb image.
    Are you using a child-theme ?

    in reply to: white background image is a little bit blue #1221606

    ok – now i see – and that was my suggestion – this image is a cmyk jpg !
    Rendering of cmyk images with browsers tend to have a cast.

    by the way: i would take a png file and let the top area transparent – then you can even have on the previous section a background-image.

    • This reply was modified 5 years, 6 months ago by Guenni007.
    in reply to: white background image is a little bit blue #1221602

    on all my browsers here on OS X Catalina – ( Chrome, Firefox Developer, Safari ) i do not have that blue cast.
    The overlay color is a pure gray. What do you want to accomplish with the overlay color?

    @DimaP : this is long time ago – why don’t you use the alb itself and goto Advanced Tab of the Slide Image:

    in reply to: white background image is a little bit blue #1221591

    can we see the site please.
    or upload that image on an image hoster like: https://postimages.org/
    I have a hunch

    in reply to: Shade effect or 2px frame around Special Heading? #1221581

    we are posting nearly the same time : please read again my comment above.

    Best would be to have a custom-class on those img – but you can select them this way too:

    img.avia_image[src*="anbwhite"] {
    -webkit-filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
        filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
    }
    
    img.avia_image[src*="vrwslogonoyearwhite"] {
    	-webkit-filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
        filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);	
    }

    here you can have 4 drop-shadows similar to the heading above – but performance is important too.

    in reply to: Shade effect or 2px frame around Special Heading? #1221576

    First : if you need help and on creating a page – could you please do not hamper the context menu of the mouse.
    Working with developer tools- without the right click is much more complicated.

    about which headings you are talking? The things above i mentioned aren’t headings by the meaning of Enfold these are pngs and no letters (font) at all.
    So about which “headings” do you talk?
    ( click to enlarge the image )

    So : believe me – the filter option is a nice one – but it is performance intensive ! : https://css-tricks.com/breaking-css-box-shadow-vs-drop-shadow/

    Hardware accelerated in browsers that support it. It’s a heavy lift without it.

    • so my advice is to change that to font and real headings – use instead of the image alb a heading alb ( and yes this would be nice to set here a class )
    • or prepare the png in a image editor to have an outline

    • This reply was modified 5 years, 6 months ago by Guenni007.
    in reply to: Lightbox Gallery Captions Not Showing #1221506

    With new DOM Elements ( mfp-top-bar) and for the mfp-bottom-bar a callback function with new content.
    here is my magnific popup script written for that page here: https://webers-testseite.de/pureinstall/masonry-gallery/

    See popup script code on that page please.

    ______

    Off Topic : i just realized that a masonry with fixed size got a totaly different markup than the flexible masonry – so code must be changed.

    • This reply was modified 5 years, 6 months ago by Guenni007.
    in reply to: Display Pictures by Number Order #1221493

    But you are talking about an image gallery?
    Or have you an masonry_entries ( a blog or portfolio etc )

    what is always a good way and even on GDPR Reasons is to show the map in an iframe.
    This is “outside” your site and you do not need an api key for it.
    Click the image:

    besides that i will have a look what i have for maps : Maps Javascript API only is needed.

    • This reply was modified 5 years, 6 months ago by Guenni007.

    Every month I get an invoice from Google for 0Euro – what kind of traffic do you have on your site?
    By the way Yigit – using an image f.e. a screenshot of a google map will come into conflict with copyright law! So be carefull.

    ____________

    A clear distinction must be made here between the screenshots from Google Maps or Google Earth and the API (“application programming interface”) offered by Google for the Google Maps service.

    As far as we know, Google itself does not have exclusive rights to the map material or satellite images. Google itself obtains the content from other third parties that produce the images. Google is therefore not the decisive rights holder, but only has a corresponding licence for use, so that the respective third party companies are quite likely to issue warnings about the further use of their images or maps – e.g. through screenshots.

    For example, the aerial image provider Geocontent had already issued a warning in 2006 to an entrepreneur who used images from Google Earth for her company blog.

    in reply to: ** Quality of Colour Section Background Images ** #1221325

    hm – i can not confirm to this: on my opinion the poor rendering is given on firefox – chrome and safari are very near to each other.
    Click to enlarge the images:

    left to right: firefox, chrome, safari

    what makes me wonder is that on firefox it shows a jpg but on info about that image there is webp

    besides this it seems to be a high compression : an image of that dimension with only 48kb !

    in reply to: show main menu under slider #1221306

    Lieber Franz – kann ich nicht, da ich auch nur Teilnehmer hier wie Du bist. ;)

    in reply to: Shade effect or 2px frame around Special Heading? #1221294

    if these are headings then yes – might be done this way.
    But as far as i can see is “Vacation Rental World Summit” and “A new beginning” etc. pp a png file and no text.

    easiest way and not so performance intensive as f.e. filter : drop-shadow : just edit your images as png files with an outline in f.e. Photoshop.

    you can see with drop-shadow :

    .avia-image-overlay-wrap .avia_image {
       -webkit-filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
        filter: drop-shadow(2px 2px 0 black) drop-shadow(-2px -2px 0 black);
    }

    but you had to find a custom selector on your page. Bring a custom class to those containers.

    in reply to: Some fixes in 4.7.5 #1221247

    All sliders go back to that js file !

    For me it is working before with the 4.7.5. the only little bug was on transition speed from last to first image on looping and fading (not sliding)
    As you can see on Günters link to github that was solved by additional code on lines 838ff:

    if (self.current === 0) {
    	hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear');
    	displaySlide.css(properties).avia_animate({opacity:1}, self.options.transitionSpeed/2, 'linear',fadeCallback);
    }
    in reply to: Some fixes in 4.7.5 #1221245

    yes – Günter that works as the file from before. with f.e. 7sec transition speed
    ( with that fix on line 838ff for fading last to next )
    https://webers-testseite.de/pureinstall/fullwidth-slider/

    but

    use the correct variable (key instead of i)

    when inserting this it is gone – even the transition speed goes back to default. not to the custom value.
    So that above from grizzlydev could not be the whole truth

    in reply to: Some fixes in 4.7.5 #1221237

    i tested it again :
    there was the topic of mine here: https://kriesi.at/support/topic/transition-speed-in-slider-alb/
    that on fading the images – the fade effect from last to first image on looping was with its default transition speed.
    so there was a fix for slideshow.js on : https://kriesi.at/support/topic/transition-speed-in-slider-alb/#post-1219428
    that was not perfect but much better than before.
    But when inserting your changings in that fixed file – the fading from last to first image is as before : wrong.

    in reply to: Some fixes in 4.7.5 #1221227

    sorry i try again.

    • This reply was modified 5 years, 6 months ago by Guenni007.
    in reply to: child theme download failed #1221222

    activate Enfold Parent : then export theme settings file.
    then activate Child : import theme settings file.

    in reply to: Display Pictures by Number Order #1221216

    it works ! i tested it afterwards

    But indeed i like to know how the syntax might be if i only want to have it on a given page.

    in reply to: Size of Featured Blog Post Image #1221167

    if you look into : functions.php file of parent enfold you see on line 174ff:

    Click to enlarge

    you see there is a filter: avf_modify_thumb_size which we can use to add or modify the thumbnails.
    you see that there are on some crop rules on the otheres not

    you can redefine such an existing size via that filter f.e:

    /***** redefine existing size  ****/
    function modified_thumb_for_blog_pages( $size ){
      $size['entry_with_sidebar'] = array('width'=>900, 'height'=>450 );      
      return $size;
    }
    add_filter('avf_modify_thumb_size', 'modified_thumb_for_blog_pages', 10, 1 );

    i think for single blog posts the “entry_with_sidebar” is taken.
    If you have no sidebar on the blog – clear – the entry_without_sidebar is taken.
    BUT: you will not see directly an effect. You had to regenerate the tumbnails ( see comment on functions.php )

    in reply to: diagonal ribbon #1221137

    did you fill something in the caption:

    and:

    in reply to: Sticky Header on Mobile Issue #1221135

    If you like to preserve that transparency header on start replace with:

    
    /****** responsive case when burger is visible *************/
    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent;
        color: #000000;
        border-color: #f2f2f2;
      }
       
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }
    in reply to: Sticky Header on Mobile Issue #1221131

    you had to see it on mobile advices.

    you break your menu at 990 so try please first remove the other code and try this in quick css:
    if it is done we will see if there will be more css to add – but i guess not.

    /****** responsive case when burger is visible *************/
    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 90%;
        max-width: 90%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .header_bg {
        opacity: 1;
        filter: alpha(opacity=100);
        background-color: #fff !important;
      }
      
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }
    in reply to: Always display Hamburger menu on specific page. #1221126

    this for your child-theme functions.php:
    Change if clause to your needs.

    function custom_burger_menu_active( $active, $context ){
      if( is_page(3) ) {
        return true;
      }
      return $active;
    }
    add_filter('avf_burger_menu_active', 'custom_burger_menu_active', 10, 2 );

    or do you mean: different menu items in the hamburger menu of a specific page ?

    there is one image loaded via http ( Inlite_logo_payoff_black_small.png ) that causes a warning.

    So if you can manage this – I would recommend that you don’t activate any other caching tool (or Enfold Merging).

    See the whole tutorial on: https://www.siteground.com/tutorials/wordpress/sg-optimizer/

    This of course does not explain why it is only now appearing.
    The server-side caching is not bad in principle, but probably leads to such inconveniences.

    have you installed that: SG Optimizer plugin ?
    maybe you try that first and see if the two listpoints will do the job

    on That Plugin:

    Manual Cache Purge
    Pressing this button will completely clear the Dynamic Cache stored for your website. Useable, if you want to make sure that you’re loading the latest version of your site.

    And:

    Automatic Cache Purge

    Enabling this option will allow our plugin to clear parts of your cache once it detects changes in your content. We’ve developed a set of rules to purge the dynamic cache in a smart, efficient way depending on the change that has occured on your site. We do a full purge on events like category deletion, plugin and theme update or switch, WordPress core update, etc. On the other hand, we do smart purge when a post is modified, a comment is added or a category is updated for example.

Viewing 30 posts - 5,491 through 5,520 (of 11,875 total)