Forum Replies Created

Viewing 30 posts - 121 through 150 (of 11,391 total)
  • Author
    Posts
  • in reply to: (Read more) – Tag Problem #1479599

    Du kannst es mit einem Accordion auch gut hinbekommen ( mit nur einem Toggle ), und hast dann sogar im Element selber Einfluss auf die Animationsgeschwindigkeit. Ausserdem ist der Button ( so du denn einen möchtest ) wahlweise ober- bzw. unterhalb platzierbar.
    Zugegeben das ist etwas sehr gestyled – aber hier siehst du mal beide Anwendungen nebeneinander:
    https://webers-testseite.de/fold-unfold-toggler/

    Du kannst bei dem Fold/Unfold überigens den Verlauf wegnehmen; musst dann aber die Höhe so abpassen das ein Zeile nicht angeschnitten wird.

    .avia-fold-unfold-section .av-fold-unfold-container::after {
      background: none !important;
    }
    in reply to: Buttons don’t align #1479513

    concerning to svg ( that topic is closed ) you asked make svg – so i thought you do not have one.
    You can use Illustrator to do so from an image – but this image redrawer is not 100% accurate, it depends mainly on the image and its resolution.

    in reply to: Enfold 7 Updates to SVG losing Colours/CSS #1479512

    By the way – I know this might be a lot of work – but it might help us if your demos were also up to date with the latest Enfold version, at least the big last main demo (unfortunately the one from 2017).

    in reply to: Enfold 7 Updates to SVG losing Colours/CSS #1479511

    i do not see your page – but if you are using the font icon ( avia-font-entypo-fontello ) then it is as before:

    span[data-av_icon="\e859"] {
      color: red !important;
    }

    if you are using the svg icon ( avia-font-svg_entypo-fontello ) then an inline svg is used – and you have to use fill for the svg path:

    span[data-av_svg_icon="basket"] svg {
      fill: red !important;
    }
    in reply to: How to make the text-logo H1? #1479497

    as mentioned here you can add html code
    you do not need to do that line by line ( but it shows you more clearly what $sub .= happens by means of that dot ) – the dot stands for adding some html

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
      $sub .= "<h1 class='logo-title'>";
      $sub .= "My Website Textlogo";
      $sub .= "</h1>";
      return $sub;
    }

    pay attention on usage of quotes – if you wrap the inserted html by double quotes – you had to use for classes, alt, href, title etc inside it single quotes.

    in reply to: why does @container query rule not work #1479451

    ok – i found the solution.
    A size (inline size) can only be measured for block or inline elements. Because Enfold shows the flex_cell as display: table – it could not work.
    But we can set to show as display: block with float left – then it works. – see link above

    in reply to: content section below content section #1479430

    I’m on a Retina display here and can’t test it under all eventualities – maybe you needed to remove that rule set:

    @media only screen and (max-width: 1425px) {
      video {
        object-position: -335px;
      }
    }

    and find your own media-query setting for it maybe with more conditions like -webkit-min-device-pixel-ratio: 2 or min-resolution: 192dpi

    maybe we start with :

    @media only screen and (max-width: 875px) {
        video {
            object-position:-235px 
        }
    }
    in reply to: Theme is showing as “broken” in WordPress #1479423

    if you got a former working child-theme – then the settings belong to this. So if you got ftp access – then upload the enfold theme via ftp – maybe better you rename the existing enfold folder to something like enfold-old, and then upload a complete enfold folder again.

    After that test if your installation runs as it should – you can then delete that old folder ( maybe it is not corrupted but hacked )

    But what seems strange to me is that you can log in to your child theme despite this message.

    in reply to: make logo svg – Günni #1479386

    It’s slowly becoming a paid service ;)

    i uploaded it to your page – and added for that inline logo ( it is now not .logo img but .logo svg ) additional code.

    It’s a very good approximation – not 100%, but reasonable at the maximum size of 300px (the small circular rings have become circles). This is also not visible in the large png file.

    in reply to: Google font error #1479338

    have you tried my petrona files: Link

    #as mentioned above

    the above problem may have nothing to do with this, but you are aware that the downloaded Petrona.zip contains both static and variable fonts.

    have a look if you have enough php memory limit in use for your installation. Or if you got the right file permissions on those folders.
    Can you upload mediafiles without problem?

    in reply to: 2 Columns with fixed height incl. Pic – how-to? #1479335

    see

    In general, if an image is to respond to screen width and completely fill the surrounding container, the container height must match the image’s aspect ratio.

    you can see what happens if you force your desired behaviour by : object-fit: fill
    https://media.kulturbanause.de/2015/07/css-object-fit.html

    if your parent container height is set by the other content – you can have that behaviour but will distort your image.
    You can decide to have that image on object-fit: cover and then shift the important parts of the image by object-position.

    see here an object-fit: fill on “About me” with Eiffel Tower :
    https://webers-testseite.de/freelancer/#about

    the height is determined by the big content on the left side (first flex-cell) – you can not have responsive behaviour on that image by that condition.

    if you set on that img now

    #about img {
      min-height: 100%;
      object-fit: cover;
      object-position: center;
    }

    the Eiffel Tower will stay in the middle and container is filled with image – not stretched – but cropped

    in reply to: content section below content section #1479332

    this is the code for your vuur4 page now:

    #av_section_1 {
      height: 100vh !important;
    }
    
    .responsive #av_section_1 .container {
      max-width: 100%  !important;
      padding:0 !important;
      margin: 0 !important;
    }
    
    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      object-fit: cover;
      overflow: visible !important;
    }

    ps: you can shift the video position by

    
    /* === Keeping the fireplace in view === */
    @media only screen and (max-width: 1425px) {
      video {
        object-position: -335px;
      }
    }
    
    in reply to: content section below content section #1479330

    can you please make a decision if you like to have boxed layout or not.
    You can see on my stretched layout that it is quiet simple to fullfill your needs. – but with boxed layout it is hard to get.
    Now you got on you page stretched layout – so see below the css ruleset.

    this is my layout on that example page with stretched layout:

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

    in reply to: Burger menu icon to be black #1479329
    #footer-page .avia_textblock p {
      display: flex !important;
      flex-flow: row nowrap;
      justify-content: end;
    }
    
    #footer-page .avia_textblock p a {
      padding: 0 5px;
    }
    
    #footer-page .avia_textblock p img {
      padding-top: 2px
    }
    in reply to: content section below content section #1479279

    try ( now just for that post : vuur5 to not have influence from other settings )

    in reply to: content section below content section #1479269

    hm – boxed content seems to be a bad guy for that. …

    try ( now just for that post : vuur5 to not have influence from other settings )

    #top.postid-227 #main {
      overflow: visible !important;
    }
    
    #top.postid-227 #av_section_1 {
      position: absolute;
      height: calc(100vh + var(--enfold-header-height)) !important;
      width: 100vw;
      left: 0;
      top: calc(-1 * var(--enfold-header-height)) !important;
    }
    
    #top.postid-227 video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height:  calc(100vh + var(--enfold-header-height)) !important;
      z-index: -1;
      object-fit: cover;
    }
    
    @media only screen and (max-width: 1200px) {
      #top.postid-227 video {
        left: -250px !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      #top.postid-227 video {
        left: -350px !important;
      }
    }
    in reply to: content section below content section #1479226

    next question: why don’t you use the enfold options on adding video to color-section:

    see with css code:
    https://webers-testseite.de/vuur/

    in reply to: content section below content section #1479225

    you see your example page – that section scrolls away!
    but you set your video container to fixed position:

    #video-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
    }

    so this will stay at position

    do you like to have this?

    #video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
    }
    
    #top #av_section_1 .container {
      max-width: 100vw !important;
      margin: 0 !important;
      top: 0;
      left: 0 !important;
      position: absolute;
      padding: 0 !important;
    }
    in reply to: Burger menu icon to be black #1479217

    i can change that for you – but you should think about it if is a good handling of the site if 2/3 of the screen height on mobile devices are #head – and content (#main) only 1/3.

    in reply to: Burger menu icon to be black #1479216

    no – only quick css – i only copy paste this changings from dev-tools – so sometimes the browser dev tools change a bit the notation – maybe that is the reason ( f.e. pseudo-elements like before and after will noted on browsers as ::before and ::after allthough it is in quick css :before and :after)

    see: https://kriesi.at/support/topic/background-images-in-color-section-dont-show/

    in reply to: background images in color section don’t show #1479201

    where is that page ( name is enough for me )

    _________________

    ok – your widget content gets bigger – than new settings are needed:

    again search for the entries in quick css and change those values:

    /* declarations inside these comments had to be changed  */
    /* and missing declarations had to be added to the existing ruleset */
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        /* padding-top: 420px !important; */
        padding-top: 550px !important;
      }
    }
    
    @media only screen and (max-width: 989px) {
      #header .inner-container {
        /* grid-template-columns: 3fr 1fr; */
        /* grid-template-rows: 50px 1fr; */
        /* padding: 20px 0; */
        grid-template-columns: 4fr 1fr;
        grid-template-rows: 160px 1fr;
        padding: 0;
      }
      .responsive.html_header_top #top #main {
        /* padding-top: 400px !important;  change to new value*/
        padding-top: 550px !important;
      }
      #header .inner-container {
        /* margin: 15px 0 0;  so just erase that rule*/
      }
    
      #header .inner-container .logo a, #header .inner-container .logo img {
        height: 300px !important;
        max-height: 300px !important;
        /* width: auto; */
        width: 300px !important;
        max-width: unset;
      }
    }

    ps – is that a wise decision to have such a big header area for mobile devices?

    in reply to: Custom fonts for certain instances of headings #1479175

    I’m a participant like you – so no private content area for me to read. Sorry – you’ll have to wait until the mods get here.

    in reply to: 2 Columns with fixed height incl. Pic – how-to? #1479163

    i understand – but what about showing me the demo-page what was the base of your page.
    f.e.: https://kriesi.at/themes/enfold-law/practice-areas/#av_section_2 – and my question if it is a background-image or as an image element?

    in reply to: Google font error #1479161

    What is the benefit of a variable font ( besides very special settings ) : https://fonts.google.com/knowledge/introducing_type/introducing_variable_fonts

    but you see on the file-size column that if you really need all font-weights the varible font is less file-size than all the static font-files together.

    in reply to: Google font error #1479160

    this is inside the zip file downloaded from Google:

    so you see the variable fonts – and inside the static folder the other fonts.
    Enfold can handle both – but you had to upload them separately. So unzip that file – the varible fonts put in a Folder f.e. Petrona-variable and pull out that zip file the static folder and rename it to Petrona
    zip these two folders ( on Mac do not include Mac Meta data ). Now these zip files are ready to upload. Make a decision what you like to use.

    For testing purpose – if you only need 100,400,700 download: Link
    and here is the variable font: Link

    First test only the static fonts. Normal users rarely know how to use a variable font ;)

    Enfold font manager:

    Choose your font then in General Styling – Fonts – at the end of the list there are the uploaded fonts

    in reply to: Special Heading apears light #1479156

    all modern-quote headings (from enfold heading element) are set to font-weight 300 on default. You can insert this to have bold :

    #top .modern-quote .av-special-heading-tag {
      font-weight: 700;
    }

    your headings inside text-block are handled different – so they are bold.

    in reply to: Google font error #1479155

    the above problem may have nothing to do with this, but you are aware that the downloaded Petrona.zip contains both static and variable fonts.

    Google Petrona is one such variable font. The zip file you download from Google contains the variable font files and the static font files in a subfolder. Enfold also supports the use of variable fonts – but you need to upload them separately.

    Now you has to decide if you like to use both – and the static font files as fallback solution ( that needs some additional conditional querries ) – or to use one kind of font file.

    The static fonts contain a large number of styles (from 100 to 900 – regular and italic); you may want to make a selection here.

    in reply to: 2 Columns with fixed height incl. Pic – how-to? #1479151

    can you post the link (of your page) or to the law demo page based on your page attempt?

    That pic in your 2/3 column is placed as background-image or as an image element?

    In general, if an image is to respond to screen width and completely fill the surrounding container, the container height must match the image’s aspect ratio.

    in reply to: Changing fonts does not work #1479150

    Ja, mit deiner Schrift hat die Umstellung jetzt funktioniert.

    behalte deine als Lizenznachweis für Dich.

    in reply to: Custom fonts for certain instances of headings #1479149

    I don’t know if your company has to comply with the GDPR; I would prefer the self-hosted fonts option. Not least because then I can be sure that I am using woff2 fonts (no idea if it is not just ttf via Google). woff2 can be used in all common modern browsers and is much smaller in data volume due to Brotli compression.

    If your question only belongs to the heading element, the DOM structure is as shown in the image above. And the CSS ruleset will then work as described above.

    Can I see the page in question? – and that heading you like to have as Sacramento Font.

Viewing 30 posts - 121 through 150 (of 11,391 total)