Forum Replies Created

Viewing 30 posts - 5,311 through 5,340 (of 11,875 total)
  • Author
    Posts
  • in reply to: sidebar and fullwidth #1230554

    Wo kommt dieser “pf-content” her ?
    Das gehört irgendwie nicht zu Enfold. Kommt das von dem print-friendly plugin?
    Wenn du nach dem Slider alles nur in Container packst ( 1/1 etc. ) sollte die Seitenleiste auch rechts erscheinen.

    • This reply was modified 5 years, 5 months ago by Guenni007.
    in reply to: sidebar and fullwidth #1230540

    Can you link to that demo page please?

    in reply to: Translucent Buttons with background image example #1230517

    yes – that is just the price for individual wishes. If the developers would consider every single wish here and integrate it into the theme, it would bloat unnecessarily as I think.
    This leaves room for own ideas and the pages do not all look the same. The pre-condition for this is, of course, that you have some basic knowledge.
    Take a look at the buttons I created based on the existing setting “light transparent”.
    I only have to set two classes to get this look. ( One class takes care of the styling and the other class takes care of the color )
    Or beneath those glassy buttons the pulsing gradient button – very easy with a bit of @keyframes instruction.

    https://webers-testseite.de/buttons/

    _____________

    PS: https://kriesi.at/documentation/enfold/button/#toggle-id-22
    and https://kriesi.at/documentation/enfold/button/#toggle-id-23

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

    yes – that is as you said above the same tree structure of folder. So put in your edited alb file to the shortcodes folder. The code above reflects exactly that structure.
    For a lot of other child-theme files this will be enough ( like you tried before ) most of the php files f.e. to have your own child-theme loop-index.php. Just put it in the child-theme includes folder. There is no need to have a code snippet like the one above.
    For js files there had to be new loading snippets ( de-register the parent-script – enqueue the new child-theme script) – f.e. avia-snippet-sticky-header.js file to have your own header shrinking etc. pp

    in reply to: image alt in masonry gallery #1230328

    Well – Rikard is on that right – backgrounds do not tend to have alt attributes – but your lightbox-images do have them if you choose flexible masonry
    so it depends on what kind of masonry you have choosen: if you have perfect grid – than this will be as you said.

    Flexible Masonry: ( if your images have the same size do this)
    the image ( that is set to display none ( the source for the background-image) has alt Attribute too ! )

    So from an SEO point of view all is done, because even elements set to display: none are crawled.

    But yes maybe an alt attribute should be present on lightbox image!
    On those little divs with background-image the anchor has title attribute – that is all allowed as global setting:
    Global attributes for anchor-links
    href
    target
    download
    rel
    hreflang
    type

    • This reply was modified 5 years, 5 months ago by Guenni007.
    in reply to: Remove slider arrow only one page #1230324

    yes because it is not that ID:

    .page-id-103 .avia-slideshow-arrows {
        display: none;
    }

    try first without !important. if it does not work set it to important.

    to have your own child-theme alb elements – yes : create a subfolder in your child-theme : shortcodes and put this to your child-theme functions.php:

    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    in reply to: easy slider caption on the right #1230256

    ich werde dich per E-Mail nochmal kontakten.

    in reply to: Copy/Clone slide Caption Content to div outside slider. #1230252

    Thanks Ismael – I figured there had to be something like that. – Only, of course, this does not include the first slide of the show. Therefore I have to consider the first slide before.

    in reply to: Cropped images on mobile version #1230213

    A background-image is a backgroundimage is a background image.

    All kidding aside. You could of course set the color section to follow the aspect ratio of the background image, but you run the risk of making the content too large for the container, which would then be cropped / overlapped.

    Example: if you have an Iphone 6, the maximum width is about 375px – with a 16:9 picture you will have about 210px height.
    With a font size of 16px and 1.5 times the line height per line, this would be 40px – making about 5 lines at 210px.
    Everything above that would be too large.

    Now you could of course set the property of the background image to “contain”, but then, like Ismael, you would have white areas without image.

    See responsive color-section on .: https://webers-testseite.de/terve/
    on wide screens this maybe ok – but on smaller screens ?

    in reply to: Background Image on iPad Stretched #1230202

    Is there also a public link to it, or do you have to keep the site private?
    ( By the way – if it is a blue pattern – and no photorealistic images – then you can set the pattern to repeat.
    A lot of patterns are in this way that they are seamless on repeating them )

    in reply to: How to blur the background image in a color section? #1229760

    Does your background-image scroll or is it set to fixed?
    (Edit : i ask – because there will be a solution if it is set to scroll.)

    _____

    But however it will be easier to blur it in a graphic programm and upload that blurred image.

    in reply to: Copy/Clone slide Caption Content to div outside slider. #1229362

    i think i got it with MutationObserver – but it would be nice/better to have a solution that uses existing triggers or functions

    Or is it possible to use out of the slideshow.js an existing function like: after_slide or a used trigger ( maybe: avia-transition-done ) for that ?

    we need an expert
    you see in DOM that the cell is dynamically inserted – but only the first slide.

    in reply to: easy slider caption on the right #1229119

    Darunter versuche ich jetzt die Grid-Row.

    in reply to: easy slider caption on the right #1229117

    Hallo Tobias : das wird mit dem Sliden ein Problem – denn das ist irgendwie auf Overflow: hidden angewiesen.
    Eventuell kannst du mit faden ja zufrieden sein:
    Das wäre hier so ein aufbau:

    Color-Section : 1/1 container darin – dort dann einen easy slider platziert:
    Der Color-Section gab ich eine benutzerdefinierte Klasse.

    .slideshow-test .avia-caption {
        position: absolute;
        left: 60%;
        z-index: 50;
        top: 0;
        width: 40%;
        height: 100%;
        padding: 30px;
    }
    
    .slideshow-test .avia-slideshow li img {
        display: block;
        width: 60%;
        margin: 0;
        border-radius: 3px;
        position: relative;
    }
    
    .slideshow-test .avia-slideshow li  {
        z-index: 10 !important;
    }
    
    .slideshow-test .avia-slideshow-inner::before {
        content: "";
        background-color: #f9be46;
        width: 40%;
        height: 100%;
        z-index: 10;
        position: absolute;
        right: 0;
    }
    
    .slideshow-test .caption_framed .slideshow_caption .avia-caption-content p, 
    .slideshow-test .caption_framed .slideshow_caption .avia-caption-title, 
    .slideshow-test .avia-caption .avia-caption-content p, 
    .slideshow-test .avia-caption .avia-caption-title {
        background: none;
        display: inline-block;
        margin: 0 0 1px 0;
        padding: 10px 15px;
    }

    https://webers-testseite.de/tobiasp/
    aber: du siehst, dass der responsive Fall natürlich ein Problem darstellt. Bei Viel Text in der Caption.
    Und das Laden nicht so gelingt ohne den Übergang zu vermeiden. Daher bleibe ich mal dran an dem Thema.
    Ich muss mich da wohl oder Übel einlesen in “mutationobserver”

    Ich habe hier mal eine Anfrage, dass wäre sicherlich eine Lösung: https://kriesi.at/support/topic/bind-event-to-slide-change/

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

    PS: wenn du auf allen Seiten Transparenz im Responsiven Fall möchtest, dann musst du das im Content auf den Seiten mit einberechnen – heißt z.B. bei der Modell Seite, oben Platz zu lassen. ( entweder Einfügen eines white separators : Vorteil – den könnte man nur für den Responsvien Fall anzeigen lassen ; oder der Color-Section generell ein huge-padding zu geben.

    Sonst sieht es nämlich so aus:

    Und wie gesagt, ich würde das Logo im responsiven Fall links floaten lassen und das Zentrieren somit aufheben.

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

    zunächst einmal : Du schreist mich nicht wirklich an – oder ? Nichts Anderes ist es wenn man in Foren Alles in Großbuchstaben schreibt ;)

    Also wenn Du bitte zunächst das mal umsetzt und auch kurz dann so lässt, dann kann man eventuell auch den Rest noch erledigen.

    Dann wäre es hilfreich, du würdest für die Zeit des Layouts das Merging abstellen. Zumindest das vom CSS – dann sieht man auch schneller wo andere Einstellungen mit hineinspielen.

    Das Logo muss die Möglichkeit haben bei sehr kleinen Screenweiten auf den verbleibenden Platz zu reagieren; oder du musst um für alle Screenweiten die gleiche Größe zu haben – Auch für breitere Screens ein Kleineres Logo in Kauf nehmen.
    Das Logo hat am Anfang ungefähr eine Weite von 400px – wie willst du das ohne Veränderung in eine Screenbreite von 375px inclusive dem Hamburger-Menü und Padding sonst unterbringen?

    Versuche jetzt bitte mal das hier:

    @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;
      }
      
      #header_main {
        border: none;
      }
      
      .responsive #top #wrap_all .av_header_transparency {
        background-color: transparent;
      }
    
      .responsive #top .header_bg {
        opacity: 1;
        filter: alpha(opacity=100);
        background-color: rgba(255,255,255,0.6) !important;
      }
     
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        max-height: 80px !important;
      }
      
      .responsive.html_header_transparency #top #main {
        padding-top: 0 !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }

    teste es geren mit dem rgba(255,255,255,0.3) aber du wirst sehen, dass etwas weniger Transparenz besser aussieht. Das ist aber Dir überlassen.

    ______________________
    first of all : you are not really shouting at me – are you ? Nothing else is it if you write everything in capital letters in forums ;)

    So if you please put this into practice and leave it like this for a short time, then you might be able to do the rest.

    Then it would be helpful if you would turn off the merging for the time of the layout. At least that of the CSS – then you can see more quickly where other settings play a role.

    The logo has to be able to react to the remaining space on very small screens; or you have to accept a smaller logo to have the same size for all screens – even for wider screens.
    The logo has a width of about 400px at the beginning – how else do you want to fit this into a screen width of 375px including the hamburger menu and padding without changing it?

    for the non transparent header sites you have to get rid of:

    .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 0 !important;
        margin: 0;
    }

    and maybe you decide not to have the centering of the logo on responsive case too:

    @media only screen and (max-width: 989px) {
    	.html_header_top.html_logo_center .logo {
    		left: 0;
    		-webkit-transform: none;
    		-ms-transform: none;
    		transform: none;
    	}
    }

    Remove all your settings on that and try :

    @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 #wrap_all .av_header_transparency {
        background-color: transparent !important;
      }
     
      .responsive #top .av-logo-container ,
      .responsive #top .logo a,
      .responsive #top .logo img {
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive.html_header_transparency #top #main {
        padding-top: 0 !important;
      }
      
      .responsive #top .av-main-nav .menu-item-avia-special a {
        height: 80px !important;
        line-height: 80px !important;
      }
    }

    maybe you should insert a logo with invers colors on normal place in Enfold – and the white logo on header – transparency options.

    in reply to: Shrinking of header – Amount – An Info #1228516

    because only the shrink factor decides the divisors on that lines ( you can shorten out the absolute height on beginning )
    your decision is only the shrink_factor now. if you like to shrink 5 times ( f.e. from 100px to 20px) the divisior on line 76 is 5
    on line 64 the divisor is 5 / (5-1) = 1.25

    this way ?

    add_action( 'wp_enqueue_scripts', 'wp_change_megamenu_script', 100 );
    function wp_change_megamenu_script() {
       wp_deregister_script( 'avia-megamenu' );
       $condition = (avia_get_submenu_count('avia') > 0);
       avia_enqueue_script_conditionally( $condition , 'avia-megamenu-child', get_stylesheet_directory_uri().'/js/avia-snippet-megamenu.js', array('avia-default'), $vn, true);
    }
    in reply to: Adding Social Icons to Main Men #1228508

    No i can’t : because i’m participant as you – so if there are different links in private content – i do not see them.
    On your link above i only the the Maintenance Mode Page

    Maybe you can look to the enfold options : header – extra elements – Header Social Icons : and set it to “Display in main header area”
    _______
    By the way: Even if GB is no longer part of the European Community – you must comply with the GDPR.
    Every page with links or share the identity of the site owner (even a phone number is sufficient) must have an imprint and a privacy policy page.

    Many of the “Under Construction” sites make the mistake of providing contact information and fall into the legal trap

    in reply to: SVG Logo issues/questions in Enfold 2017 Theme #1228502

    the svg support plugin offers the possibility to have inline svg. but you don’t use that for logo?
    on your logo there is now in the dom a <img src="/wp-content/uploads/your-logo.svg" …>
    in this case you only had to insert on Enfold Options the link to your alternate Logo : – Header – Transparency Options : Transparency Logo

    maybe a link to your site could help me to give more advice
    ________
    On that page here i use my svg as an inline-svg – and do change the fill color of the letters on header-scrolled
    and transparency. So i do not need a different transparency logo on that case ( one svg – and change fill color )
    https://webers-testseite.de/pureinstall/

    in reply to: easy slider caption on the right #1228500

    Hallo Tobias – is there a page i can see as a participant too?
    Your page link above goes to an answer of mine – so maybe i got an idea.

    Can you test please if it is enough if you exclude that page from loading the script by this in your child-theme functions.php
    Change Page ID to your needs

    add_action( 'wp_enqueue_scripts', 'conditionaly_deactivate_lightbox_script', '100' );
    function conditionaly_deactivate_lightbox_script() {
        if(is_page(38198)){
          wp_deregister_script( 'avia-lightbox-activation' );
        }
    }

    so on Enfold on a masonry the link will be present but no lightbox is opend. Maybe your script will then take over that function.

    in reply to: Create a sticky sidebar #1228383

    have a look here : https://webers-testseite.de/sticky-sidebar/
    the code – and instruction is there.
    and similar to that : https://webers-testseite.de/sticky-elements/

    Thanks –
    I already did this – and also reimport them.

    now I have taken an even more drastic action:
    I exported the portfolios all to another test platform, then deleted them all, emptied the trash can, logged in to mysql and cleaned the database.
    Also deleted all portfolio “categories”.
    Reset the permalinks (same settings, but I wanted to make sure that the portfolio permalink structure didn’t play a role here). Then I played back the portfolios. Now it works.
    Still it remains a mystery to me why only in the list view the portfolios were displayed incompletely and incorrect – and the other views were all displayed correctly.

    Of course I had changed the names of the portfolios for some inquiries here on board. The Custom Post Type once set to Books ( you may remember ) and back again. But why it only went wrong with the list views I don’t understand.

    Anyway: can be regarded as done.

    in reply to: Header visibility and transparency #1228200

    Does it work as you like to have it?
    Your site is only available with the front-site for non logged-in users.

Viewing 30 posts - 5,311 through 5,340 (of 11,875 total)