Forum Replies Created

Viewing 30 posts - 811 through 840 (of 11,589 total)
  • Author
    Posts
  • in reply to: 6 columns #1470403

    Classes such as av_one_third are just names. With these names, “Enfold” knows how to handle them, e.g. how to set the width.
    But nobody prevents you from treating them differently.
    So you can use 1/3 columns and use them with all the options within the Advanced Layout Builder element. And then, later on, re-declare the settings provided by Enfold.

    To address them better and not influence the others (e.g. 1/3 columns), a custom class would be useful. To use a container as flex container – it would be advisable to have only those elements inside that should be influenced.
    Short and concise – create a color-section (custom class- what you like : flex-six) with 6 1/3 containers inside – without equal-height option.
    the direct parent container to those columns is the entry-content-wrapper – so this has to be the flex container.

    see and get css-code : https://webers-testseite.de/six-column-flex-layout/

    PS : Please remember to define the parallax effects differently for the screen widths.
    Why 1/6 columns and smaller were not adopted by default, you can see from the example.

    in reply to: Protecting current files from new author #1470292

    Authors only can edit own posts/portfolios but never pages. If you like to have different permissions – you need to install a plugin.

    in reply to: Menu button gradient? #1470273

    you have to know your menu-item ID
    i – as a Participant – can not see private content area.

    in reply to: Problem with anchor links #1470253

    next hint: to bring a heading to center position – you do not need to have three 1/3 columns with the heading inside the middle column!
    You see that your “Willkommen” heading is cut-off on both sides. Put it in a 1/1 column. Because you got a modern centered setting it will work with no problem.

    in reply to: Problem with anchor links #1470250

    You have a ruleset on your css that is causing the issue.

    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding-top: 0px !important;
    }
    in reply to: Image overlay ends too early #1470248

    you got a ruleset :

    div .av-arrow-down-section .av-section-color-overlay {
      bottom: 24px;
    }

    Question: does it make sense on having on the last color-section an arrow down ?
    I guess if you delete this option you do not need to change that ruleset.

    in reply to: Change color of mouse over titles #1470232

    because: there is no hover style on mobile devices!
    what did you expect to see? What is what you like to see?

    f.e.:

    .responsive.avia_mobile #top .av-masonry-entry .av-inner-masonry-content {
      padding: 10px;
    }
    
    .responsive.avia_mobile #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
      background: rgba(0,0,0,.01);
    }
    
    .responsive.avia_mobile #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos, 
    .responsive.avia_mobile #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos {
      text-align: left;
    }
    
    .responsive.avia_mobile #top #wrap_all .all_colors h3 {
      font-size: 18px;
      text-align: left;
    }
    
    .responsive.avia_mobile #top #wrap_all .all_colors .av-masonry-entry h3 {
      padding: 5px;
      font-size: 18px;
      background: rgba(0,0,0,0.3);
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
      position: relative;
      width: auto !important;
      text-transform: none;
    }
    
    .responsive.avia_mobile #top .av-inner-masonry-content-pos-content {
      display: inline-block !important;
      position: absolute;
      top: auto;
      bottom: 10px;
    }

    it is for mobile devices only:

    in reply to: Problem with anchor links #1470228

    remove that div with the ID overview – it creates an ugly break in your background-image (by adding a after_section_1 container)
    Give the second color-section the ID : overview. Set the min-height to 280px.

    On activating that section in the dom to be seen in its dimension- you can see that 280px will touch the top- and the next grid-row will be visible beneath the header:
    (click to enlarge that image:)

    the grid-row shown now under the second color-section because parallax shift have moved it to that place – but you see that is not under the header!

    PS: i would determine the min-height of that second color-section not via the Color-Section Options! but via quick css – because on mobile you have different circumstances and have to set media-queries on this to have no min-height and no background-image – and a very small height.

    in reply to: Problem with anchor links #1470225

    It is not exactly the same as on the other page.
    You shift those columns with a transform rule with parallax effect to the top. ;)

    But overall I still have the question why everything is shown behind the header, although it is not transparent ? See previous question (2 section, beginning with “Somehow everything always disappears ….”)

    can you make a screenshot – i do not see what you are describing.

    in reply to: Protecting current files from new author #1470222

    That is normal behaviour of WordPress Users.
    Authors only are able to edit own posts (no pages). Editors can edit all Posts and Pages.
    and as an admin – well – of course everything

    An Author logged in see:

    Only on “mine” Posts on hovering there is an edit Button.
    If you show all Posts – you can not see any edit Button at all on Posts from different Users.

    Comments etc. are only listed – and can not be edited (except on own Posts) etc.

    Have you installed a Plugin on influencing User Roles? I can not believe that Authors are able to see pages.

    in reply to: iframe – mobile #1470221

    width and height are set in the iframe – the only thing to change is the positioning as Ismael mentioned above.
    I would change the width to 100%

    <iframe style="position: relative; left: 0; right: 0; top: 0; border-radius: 15px; border: 0; margin: 0 auto;" 
        src="https://3d-configurator.arimars.com/arimars/AutumnSeasonTshirt" 
        width="100%" 
        height="500">
    </iframe>
    in reply to: How to submit and use custom fonts #1470206

    By the way @Ismael : that link to show the available Fonts “Google Webkit Fonts” does not work anymore.
    Reason is that Droid Fonts and Open Sans Condensed is not listed in Google anymore.

    in reply to: Menu button gradient? #1470176

    you can see it here even with animation on Main Menu “Impressum” : https://webers-testseite.de/
    If you do not need that animation – remove that part from rules and set the background-size to 100%.

    You can select that menu-item via ID
    and do something like this:

    #menu-item-ID .avia-menu-text {
      color: #fff;   /**** perhaps an !important is necessary ****/
      background: linear-gradient(-45deg,#FFA63D,#FF3D77,#338AFF,#3CF0C5);
      background-size: 600%;
      border: none !important;
      animation: anime 14s linear infinite;
      padding: 11px 20px !important;
      border-radius: 0 0 10px 10px !important;
    }
    
    @keyframes anime {
      0% { background-position:0% 50% }
      50% { background-position:100% 50% }
      100% { background-position:0% 50% }
    }
    
    in reply to: How to submit and use custom fonts #1470175

    where did you get your font from? Is it a download from Google? Offers Google a variable font on that download?

    The macosx comes from those invisible files OSX is generating for a lot of files ( some are icons etc. and meta infos ). Packing these folders by OSX internal zip – these files are inside that zip too.
    BetterZip for example can zip folders without those meta info files ( it is called: pack for PC ).

    After your Answers – i will try to give a good explanation on how you do it.
    If you downloaded an otf or ttf file – try: https://kriesi.at/support/topic/eigene-schrift-einbetten/#post-1401545

    in reply to: Link target #1470174

    you can find that on the button element itself on Content Tab : Link Settings Or File Download.
    And now you can choose on “Open in New Window” Dropdown List what you like to have.

    in reply to: Flaticons – mehrere Schriften #1470172

    But Font-Icons are monochrom ! – if you downloaded colored Icon-Packs – then you can not use them as font-icons in Enfold.
    __
    the downloaded flaticons folders – do they have a svg font icon?
    you can extract that svg and upload it to fontello icon: https://fontello.com/
    drag and drop that svg file to “custom icons” field. I guess you can do that for each of your Icon-Packs. And make one Container File of them.

    After uploading all of your svgs to that input field – activate all of them – Name your font – and download it. This zip is for uploading it to Enfold.

    in reply to: Link target #1470170

    but where is the link? this is the span of the icon. The anchor is a parent of that (look for a.avia-button) there is the href attribute and – in most cases the target too.

    set up for mobile devices :

    .responsive.avia_mobile #top .av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
        right: 20px;
        bottom: 20px;
    }

    or if you mean for small screens – then a media-query is the means of choice instead:
    f.e.:

    @media screen and (max-width: 767px) {
      #top .av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
          right: 20px;
          bottom: 20px;
      }
    }
    #top .av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
      position: relative;
      margin-right: 20px !important;
      margin-bottom: 20px !important;
    }

    choose the large gap and place that css into your child-theme quick css:
    (masonry-gallery – or do you mean the masonry-entries?)

    #top .av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry {
        right: 50px;
        bottom: 50px;
    }

    i try to find a solution for av-flex-size now…

    in reply to: Change color of mouse over titles #1470119

    sorry – i did not think of that. But – there is no hover style on mobile devices!
    So that is normal behaviour for mobile devices – if you do not want that blur and that darker overlay – change the offered rule to:

    .responsive.avia_desktop #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
      background:rgba(0,0,0,.5);
      -webkit-backdrop-filter:blur(3px);
      backdrop-filter:blur(3px)
    }

    because mobile devices have on html the class: avia_mobile the default enfold setting will work instead.

    in reply to: Logo springt #1470113

    nicht mit dem svg als img tag. Wenn da ein inline svg wäre, dann könnte man sogar auf das image overlay verzichten.
    wenn du nochmal auf meine Beispielseite gehst: https://webers-testseite.de/ausgesonnen/
    und dir jetzt den leicht geänderten Quellcode des svg ansiehst, dann bemerkst Du, dass jetzt jede Zeile eine eigene Klasse hat.
    Diese sind via quick css ansprechbar.

    .ideen-batch svg {
      width: 20vw;
      margin-left: 10vw;
    } 
    
    #av_section_1:hover .ideen-batch svg .sichtbar {
      fill: #FFF;
      transform: scale(1.2);
      transform-origin: center 90px;
    }
    
    #av_section_1 #Ideen-Kreis :not(.kreis) {
      opacity: 0;
      animation: batch 1s ease 3s forwards;
    }
    
    @media only screen and (max-width: 549px) {
      #av_section_1 {
        background-position: 75% 100%;
      }
      .ideen-batch svg,
      .ideen-batch .avia_image {
        margin-left: 3vw;
      }
    }
    
    @keyframes batch {
      to {
        opacity: 1;
      }
    }
    in reply to: Logo springt #1470095

    hier oben : https://kriesi.at/support/topic/logo-springt/#post-1469978
    sieht Du ja das da eine margin-left drin ist. Bei der Screenweite jedoch macht es keinen Sinn.

    wenn du lieber über die gesamten Breiten den Batch gleich groß haben möchtest:
    (also dann den margin-left weg und doch eine absolute Größe definieren.

    #top .ideen-batch svg, #top .ideen-batch .avia_image {
      width: 200px !important;
    }
    in reply to: Heading with gradient > cropped #1470087

    add a sufficient line-height to it:
    ( i think the font-size you set in the heading itself – so better is to use a relative line-height value)

    h6 {
      line-height: 1.7em;
      font-weight: 400 !important;
      letter-spacing: 0.01em !important;
      background: linear-gradient(to right, #b04938, #ddbbae, #b8b665);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    in reply to: icon boxes not equal height multiple min-heights #1470086

    on general it is hard to get same height on containers that are not siblings.
    If I have to fulfil this condition, then I imitate the icon box – see:
    https://webers-testseite.de/iconboxes/
    I then use the option of forcing these columns to the same height via flex-box layout. I can then use it for this construction at any time via the user-defined class.
    Nice side effect: I can use the extra features of a standalone icon.

    in reply to: Image above column mobile #1470082

    They are part of these settings, as ismael mentioned. These 4 icons (underlined in red) give you settings for different screen widths. There is some explanatory text on the right. The only thing I set as a default is whether absolute or relative positioning is selected. I then set the values for the individual widths.

    f.e. on this demo page here (the three columns with that special ampersand) : https://kriesi.at/themes/enfold-parallax/

    it will make no sense for mobile view that the columns do overlap and move that parallax way. So these settings are not the same as for the desktop version.

    in reply to: Search symbol on the left side of main menu is blank #1470043

    Did you realy read what i have written? Did you see where I saw the striking difference? I described two very prominent differences as examples, and Ismael shows you again where the problem might lie.
    If Enfold expects to find the following: data-av_icon=""; but then finds this: av_icon=”” – it cannot be interpreted correctly – and therefore no icon can be inserted.

    Ok – here for you, so that you don’t get annoyed by the translation again (or even by the different header heights).

    It seems that in your installation all minus signs “” indicate a splitting of the properties.
    And because your images and other alb do have data- attributes – there might be some changes to search behaviour. Maybe a custom script that takes influence on that?

    in reply to: Logo springt #1470014

    zunächst – ist das intentional, das der Kreis zunächst ohne die Inhalte gezeigt wird?

    da oben habe ich ja auch schon eine Anpassung angedeutet. Da kann natürlich auch die width mit hinein.

    Hast du eigentlich wirklich die container weite auf 1130px gestellt? ( in dem Fall wäre die margin-left hier nicht nötig).

    in reply to: Logo springt #1470009

    du hast es noch auf bild mittig!
    und auf Grund der Setzung der allgemeinen svg weite, müssen wir hierfür dann selectiver werden:

    #top .ideen-batch svg,
    #top .ideen-batch .avia_image {
      width:20vw !important;
      margin-left:10vw
    }
    in reply to: Logo springt #1469989

    ALB Element ist Advance Layout Builder Element – also das was du in dein Layout einsetzt. z.B. Image – vielen (wenn nicht sogar alle) diese ALB Elemente haben die Option eine benutzerdefinierte Klasse zu erhalten. Also im Edit Modus dann auf Advanced Tab dort Develper Settings (bitte dort in den Eingabefeldern die Bezeichnung ohne Punkt eingeben).

Viewing 30 posts - 811 through 840 (of 11,589 total)