Forum Replies Created

Viewing 30 posts - 5,581 through 5,610 (of 11,875 total)
  • Author
    Posts
  • in reply to: icon boxes not equal height #1218793

    by the way: why is the right column set smaller than the others?
    : there you have on that column set :

    Element {
        padding: 0px 10px 0px 10px;
        border-radius: 0px;
    }

    On the others not !

    in reply to: icon boxes not equal height #1218789

    That’s just a tangled web.
    Another way to achieve this and in your case where it is now suddenly possible to publish the page link, the only chance is to imitate the iconbox.
    Because you like to have an image background with heading on top. Then flex layout will not work properly.

    Enfold provides the tools to give columns the same height. So why not use this tool to create an iconbox.
    We just put the iconbox in the column like you did, but give the iconbox a transparent background and no border!
    To have now a look-alike iconbox we can shift the whole iconbox over the top-border of the column.
    The rest is a bit of Enfold styling options : background-color, border, and border-radius etc.

    You can see here what is the trick at the bottom – you see the iconboxes that are with different height.
    But if you make them transparent and shift it to the top they will look like iconboxes.

    See here: https://webers-testseite.de/equal-height/
    Solution is in Source-Code ;)

    give to the columns or to a parent-container a custom-class f.e: equalboxes

    /**** play a bit with the shift values ***/
    .equalboxes .iconbox.iconbox_top  {
    	position: relative;
    	top: -100px;
    	margin-bottom: -100px;
    	padding-bottom: 60px;
    	background-color: transparent !important;
    }
    
    /**** maybe for buttons to have them on the bottom ***/
    .equalboxes .avia-button-wrap.bottom-button {
    	position: absolute;
    	bottom: 0;
    	right: 10px;
    }
    
    /****** media-query depends on your breaking-point for responsive layout ************/
    @media only screen and (max-width: 767px){
    	.equalboxes {
    	   margin-bottom: 80px !important;
    	}
    }
    in reply to: Burger menue #1218776

    on documentation page it nearly allways quick css.

    in reply to: Burger menue #1218759

    if you are using logo left – menu right – you can have a multiline menu!
    https://kriesi.at/documentation/enfold/menu/#multiline-menu

    But with a lot off sublevel menu it is best if you place the first-level menus without submenu on top

    in reply to: Layer slider text (line height) not working #1218753

    übrigens unter dem Tab: Link und Attributes – kannst du klasse und ID einem Layer zuordnen. Fiel mir gerade ein. Dann kann man sich das abzählen sparen:

    in reply to: Layer slider text (line height) not working #1218745

    schick mir doch mal den Link bitte dann schau ich rein.
    Wie es geht weiss ich. Nur der Selector weicht bei jedem Layerslider halt ab.

    Der Layerslider macht je nachdem aus Textblöcken einzelne Zeilen!

    Dann kommt da ein div noch extra hinzu – wie es oben Rikard schon erwähnte mit der Klasse: line
    Du musst aber spezifisch bleiben, da die auch bei fetten überschriften etc. greift.
    Also bleibt einem nur, dann die div.ls-wrapper:nth-of-type(x) oder child methode um es selektiv zu haben .

    hier zB macht er das nicht mit den lines: https://layerslider.kreaturamedia.com/sliders/architecture-slider/

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

    3.) the layout above isn’t a gallery – it is 5 single images – I only mentioned it for the sake of completeness.

    1.) No – now seriously – I will not comment further on this nitpicking. Do you really believe that someone sits down at his mobile phone and compares it with the display on his desktop PC? Honestly?
    And if someone does, would you like to call him your customer?

    Everything else about further support you should then clarify with a freelancer, who rightly gets money for such fine-tuning.

    I once had a customer here who seriously wanted to discuss with me that a border color in Internet Explorer has a little more magenta compared to the Safari browser. Believe me – to leave such customers directly to others – that saves nerves and time and therefore money.

    ___________
    Actually, the flex layout only makes sense anyway, if only one column is shown in the responsive case, i.e. set the code via mediaquery above only for larger screens.
    A little hint when it comes to mobile devices, you can use the class: avia_mobile and avia_desktop that are set from enfold on html.responsive to establish different rules.

    in reply to: Update via FTP #1218193

    this is my advice : https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1056107

    so you will have less offtime. If there are some troubles – you can switch back to the old version in seconds.

    border-radius of images are part of enfold setting:

    .avia-image-container-inner, 
    .avia_image, 
    .av-image-caption-overlay {
        border-radius: 3px;
        display: block;
        position: relative;
        max-width: 100%;
    }

    so you had to change that – if you only like to do it on that images :

    .flex4on1 .avia-image-container-inner, 
    .flex4on1 .avia_image, 
    .flex4on1 .av-image-caption-overlay {
        border-radius: 0;
    }

    But border-radius has no influence on image distance. Only the center point will be gone where all images meet.

    put this to your child-theme functions.php:
    for single images with lightbox:

    function change_lightbox_size() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);

    for image source for light-box in a gallery

    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta){
        $link = wp_get_attachment_image_src($attachment->ID, "full");
        return $link;
    }
    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    • This reply was modified 5 years, 7 months ago by Guenni007.

    do the image containers have links?
    do they all have links? – anyway

    I thought it might be done in your way – but it is harder to reach than i can imagine. Maybe a Mod knows an easier way.
    I only got a solution with 3 nested flex containers.

    you can see all on this page: https://webers-testseite.de/elenapoliti/
    css code and alb layout including.

    Do not choose the columns to be equal height on Enfold ! – we will do that with flex settings.
    In that color-section with your setting – do not place additional Elements in it – not even separators.
    Inside the columns you can place other elements – the image has to be the last one.

    Notice:
    I would only do these settings to be active for non-responsive case. Depends on your settings
    Synchronize the breakpoint of the columns with that rules: Edit column – Row screen options – Fullwidth Break Point

    • This reply was modified 5 years, 7 months ago by Guenni007.
    in reply to: i want to keep company name next to logo #1217998

    Give this a try get rid of all code above – it will be included here in a whole bunch.
    On mobile or responsive case this header stayes fixed – on very small screens your headline will be in 3 lines:

    @media only screen and (min-width: 768px) {
      .logo img {
        float:left
      }
    
      #top .logo,
      #top .logo a {
        overflow: visible !important;
      }
    
      #top .subtext {
        float:left;
        position:relative;
        padding-left: 18px;
        top:50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);   
      }
    
      #top .subtext .logo-title h1 {
        margin-bottom: 0 !important;
        transition: all 0.5s ease
      }
    
      .header-scrolled .subtext h1 {
        font-size: 18px;
        transition: all 0.5s ease
      }
    }
    
    /****** no conflict with Main Menu and Logo *************/
    @media only screen and (min-width: 768px) and (max-width: 840px) {
     .subtext h1 {
        font-size: 24px !important;
        transition: all 0.5s ease
      }
    }
    
    /****** responsive case when burger is visible *************/
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .container {
        width: 95%;
        max-width: 95%;
      }
       
      #header {
        position: fixed !important;
        height: 80px !important;
        max-height: 80px !important;
      }
      
      .responsive #top .logo {
        display: flex !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;
      }
       
      .logo img {
        float: left
      }
      
      #top .subtext {
        float:left;
        position:relative;
        padding-left: 18px;
        top:50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); 
      }
      
      #top .subtext .logo-title h1 {
        font-size: 18px !important;
        margin-bottom: 0 !important;
        transition: all 0.5s ease;
        font-size: 22px !important;
      }  
    }
    
    /****** Very Small Screens Iphone 5 etc *************/
    @media only screen and (max-width: 399px) {
      #top .logo,
      #top .logo a {
        overflow: visible !important;
      }
      
      #top .subtext .logo-title h1 {
        word-wrap:  break-word !important;
        white-space:  normal !important;
      } 
      
      .logo img, #top .subtext {
        float: none
      }
      
      #top .subtext {
        position: absolute;
        padding-left: 80px;
        top:50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); 
      }
    }
    in reply to: i want to keep company name next to logo #1217972
    .logo, .logo a {
        overflow: visible !important;
    }

    and – sorry Victoria – maybe this is a little more elegant:
    – so get rid of :

    .subtext {
        display: block;
        left: 120px;
        position: relative;
        top: -65px;
    }
    
    .header-scrolled .subtext h1 {
        font-size: 18px;
    }

    and instead – and maybe only for non-responsive case

    @media only screen and (min-width: 768px) {
      .logo img {
        float:left
      }
    
      #top .logo,
      #top .logo a {
        overflow: visible !important;
      }
    
      #top .subtext {
        float:left;
        position:relative;
        padding-left: 18px;
        top:50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
      }
    
      #top .subtext .logo-title h1 {
        margin-bottom: 0;
      }
    
      .header-scrolled .subtext h1 {
        font-size: 18px;
        transition: all 0.3s ease
      }
    }
    

    after that we will see how to style the small screens.

    best would be to include the heading font-size with shrinking amount – but that will be done only with a child-theme avia-snippet-sticky-header.js file

    in reply to: Big SEO issue URGENT #1217971

    I am a participant like you and therefore do not see the hidden content.
    Bumping here in the posts has rather the opposite effect. Your Urgent in the topic is indicative enough for the mods.

    This here is the title of your start posting – and the title of your topic: Gallery with four thumbnails above and one big image below

    On your testpage https://webers-testseite.de/4on1-flexbox-model/, you have four thumbnails in a row. But on my page, I only want to have two thumbnails in a row.

    So this was described correctly but inadequately.
    Also this one: “Two galleries, one above with four thumbnails and one below with one big image” doesn’t exactly lead me to assume it could be 2 rows and 2 lines. Anyway –

    That my approach is not only theoretically correct but also works practically can be seen on my test page.
    If you like to have the behavior of 2 small images in two rows and then one big your can see on the media-query with the 50%.
    just get rid of that media query on 989px and set the first rule to :

    .flex4on1 .avia-image-container {
    	flex: 0 1 calc(50% - 2px);
    	margin: 0 0 4px;
    }

    Why : on two containers there should be a distance of 4px. Both containers are set to space-between – So outer edges are left resp. right-justified. You have then for both containers a width of : (100%-4px) so each Container has a width of : (50%-2px)

    on 4 images besides ( and I apologize for any inaccuracy ) you have there you have three spaces all should have 4px ( 12px )
    same play: (100%-12px) each image then : (25%-3px)

    I just switched my test page now to that setting – and changed the code-block content too.

    I hope you can recreate my situation on your testpage and find a way to correct the vertical white space.

    No i can’t – because i do not have this issue

    So if something doesn’t work on your installation, i would have now to look for the reason on this page;
    since I can’t do that, you will have to wait for mods.

    But i guess your 50% – 4px is the reason for

    • This reply was modified 5 years, 7 months ago by Guenni007.
    in reply to: Big SEO issue URGENT #1217945

    so you had to wait til a mod is here.

    in reply to: Layer slider text (line height) not working #1217938

    ne heute nicht mehr – der Büro Rechner ist aus.
    Das hier läuft alles über mein Arbeitstier: den Mac. – Da rufe ich keine E-Mails ab.

    PS: ja mach mal, kann ich ja im Web-Client einloggen!

    • This reply was modified 5 years, 7 months ago by Guenni007.
    in reply to: Layer slider text (line height) not working #1217936

    Can you show your link to that page?

    in reply to: Enfold Accordion is always open on page load #1217935

    But the initial open setting on behavior is set to “0” ?
    And the link to that page does not go to with including toggle-id like : /boligforeninger/#toggle-id-1

    in reply to: Layer slider text (line height) not working #1217932

    But you have seen the styles tab on each layer ?

    And by the way : on the right side of that Styles Tab there is an input field for custom css as well – for all settings that couldn’t be done by options.
    info from layerslider tooltip : “If you want to set style settings other then above, you can use here any CSS codes. Please make sure to write valid markup.”

    And why two times opening a new post on similar thing: https://kriesi.at/support/topic/change-color-text-input_checkbox_label-form-with-background/

    my answer is there

    or you decide to give that field a background instead:

    #top.page-id-519 #element_avia_8_1 {
      background:#fff;
      padding:10px;
      border: 1px solid #e1e1e1
    }

    since the existing rule is also set to important – we must then do the same with even more selectivity
    The Link inside had to be influenced too.

    #top.page-id-519 .input_checkbox_label {
      color: #fff !important;
    }
    
    #top.page-id-519 .input_checkbox_label a {
      color: #f1c20c !important;
    }

    phone info has its own class – so why not use it:

    .phone-info {
        background-color: blue;
        padding: 5px 10px;
    }

    Depends on your settings you had to set for transparency header too:

    #top .av_header_transparency .phone-info {
        background-color: blue;
        padding: 5px 10px;
    }

    The font color is set via:

    .header_color .phone-info a {
        color: red;
    }

    And you love me too? ;) – because i’m not part of that team.

    in reply to: Big SEO issue URGENT #1217687

    these ALB do have that filter :

    in reply to: Big SEO issue URGENT #1217677

    i do not see your page – but you can use the filter in this case: avf_customize_heading_settings

    This filter exists in a lot of ALB Elements to change the heading tag: Link

    on time line there are two possibilites to influence the date and the title
    And you can even add an additional Class to these tags:
    Put this to your child-theme functions.php

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array()){
    
    // this is for the date 
      if( $context == 'avia_sc_timeline' && is_array( $extra_args ) && in_array( 'date', $extra_args ) )
      {
        $args['heading'] = 'h3';            
        $args['extra_class'] = 'custom-date-class';   
      }
    
    // this is for the title 
      if( $context == 'avia_sc_timeline' && is_array( $extra_args ) && in_array( 'title', $extra_args ) )
      {
        $args['heading'] = 'h2';            
        $args['extra_class'] = 'custom-title-class';   
      } 
      
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );

    Pay attention : you got that rule Twice in your code:

    Ich kann dir leider nicht sagen wo du das gespeichert hast, weil du dein Merging in Enfold schon an hast.

    add this to the whole code:

    .flex4on1::before,
    .flex4on1::after {
        display: none !important;
    }

    i had to see your site ! – no images

    are your images the same size! if they got different aspect ratio it will be nearly impossible to get that result.
    You can see my testpage that it works on all screen width.
    otherwise look for a mod

    in reply to: Hamburger Menu in Socket #1217418

    You always come in bits and pieces with your demands. You should have said directly that you wanted the header at the bottom

    Next Question: these are only images ( with maybe a link to lightbox or other pages) ?
    It must be a masonry effect? ( Masonry Gallery ALB Element ) ?

    This is a different approach.
    The Masonry Containers are a list of anchor elements.
    Anchors are always block-level element.
    https://webers-testseite.de/4on1-flexbox-model/

Viewing 30 posts - 5,581 through 5,610 (of 11,875 total)