Forum Replies Created

Viewing 30 posts - 511 through 540 (of 10,882 total)
  • Author
    Posts
  • The first address to change is on General Styling – Fonts (Tab)
    ____

    And have a look at Hanken Font – you can use the variable font then only 136kb are used for all font-weights
    https://kriesi.at/support/topic/how-can-i-add-a-row-with-text-above-an-image/#post-1460650

    in reply to: How can i add a row with text above an image? #1460650

    on the alb itself you got on styling options all you need : even the font color – and font-size.

    The trick is that you can now use this class with different settings (backgrounds, font sizes and colours).

    By the way – you are planning to use a chineese translation ? I do not really know why you are using such a performance hungry font for your page. I would at least set the English sentences in a similar Latin font.

    For example from your page the comparison of zenkakugothicnew to (on Google Fonts) Hanken Grotesk:

    in reply to: Postslider javascript #1460631

    there is a main.css embedded – and it has a lot of grid layout settings for these sliders. This main.css has more than 3000 lines – so I don’t want to give any advice here – so as not to influence other elements additionally.

    in reply to: How can i add a row with text above an image? #1460629

    alb : advanced layout builder element – or avia layout builder element.

    open your image element – on content : at the bottom – choose to show a caption: “Display a caption overlay?” : enter your text there.

    if you entered a text there – than you will have on styling tab an options dialog with some settings for that caption.

    with overlay color your desired color (blue) and overlay opacity 1!

    in reply to: How can i add a row with text above an image? #1460623

    you had entered that blue-info as ID not as class.

    Next on the image alb element there is on content tab at the bottom a Caption input field. There comes your text in.
    Next on Styling you can go to image capiton : choose your wanted look – but on caption overlay opacity choose : 1

    so you can use it on every image alb with that custom-class. And you can enter your text by alb options and the background too.

    in reply to: How can i add a row with text above an image? #1460620

    see here a solution for image alb element that uses the caption (your text) – with overlay color your desired color (blue) and overlay opacity 1!
    css code on that example page:
    https://webers-testseite.de/blue-bar-above-image/

    i just look now what happens to that code if a link is on the image (external or lightbox) …

    in reply to: How can i add a row with text above an image? #1460618

    what is your starting point. An Image Alb Element from Enfold – or is it a placed media file inside a Text-Block Alb?

    in reply to: Postslider javascript #1460346

    On first load – just klick one of the images of the slider – it will open a different link than the title or read-more link.
    navigating with the arrows to the nex three links and go back to it than – the link of images and the rest will be ok.

    in reply to: Changes to right sidebar header #1460197

    Sorry, the example page from above is already for another experiment. Hover the header ;)

    in reply to: Add button into header under Social Icons #1460179

    well the hook : ava_main_header is just under the header_meta – it is the first child inside header_main.
    Position is perfect. The rest is styling and positioning.

    you can create a widget area there – or insert directly just your button:
    f.e.:

    function custom_func() {
    ?>
    <div class="spezial"><div class="avia-button-wrap avia-button-right"><a href="#" class="avia-button av-link-btn avia-icon_select-yes-left-icon avia-size-medium avia-position-center avia-color-theme-color"><span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="fontelico"></span><span class="avia_iconbox_title">call to action …</span></a></div></div>
    <?php
    }
    add_action('ava_main_header' , 'custom_func');
    in reply to: Anchor links not working correctly in mobile menu #1460052

    but that ID is only once on your page? or do you have a desktop version section – and a mobile version section.
    An element that should not be displayed is still present in the DOM.
    A lot of users do that to have better responsive behavior. – Test if on that page your anchor ID exist only once as #id.

    sorry – no private Content for me – you had to wait til mods are here.

    loading the font from Google is not GDPR compliant – hosting the font on your own servers is.
    but this is from performance point of view a heavy font: even the woff files will have for each font-weight over 1.1MB
    Try it yourself via Enfold – Import/Export – Custom Font Manager – and upload that zip file : https://webers-testseite.de/ZenKakuGothicNew.zip
    only light, regualar and bold are inside ( there is on google black and medium inside – but see comment above)
    You can find those uploaded fonts then under General Styling – Fonts (Tab) at the end of the list inside :

    if you want to hamper google font loading via Enfold from google pages – paste this to your child-theme functions.php:

    function my_output_google_webfonts_script( $activate ){
      return false;
    }
    add_filter( 'avf_output_google_webfonts_script', 'my_output_google_webfonts_script', 10, 1 );

    PS: if you got a CDN Server – then it might be better to load it from their servers.

    But how to write with that font-face i do not know – how do you choose your letters:
    伟伯网页设计

    How can I explicitly test whether it is loaded – here, for example, I can’t find anything in the network analysis.

    https://kriesi.at/themes/enfold-construction/contact/

    i think that the dotlottie is using some polyfill features. And some older parallax scripts do too.

    thanks for the info – and these projects are Enfold Sites? Can you deduce where a use of polyfill in Enfold might come from?
    Also, when I go to the demo pages with Google Maps usage – I can’t find a polyfill usage.

    For your reference, attached is a list of your projects where we have detected Maps Javascript API usage. Please check all sites associated with these projects.

    thanks for the info – and these projects are Enfold Sites?

    in reply to: Vertical align of images in portfolio grid #1460015

    you can try this – but best would be to have featured images of the same aspect-ratio.

    .grid-sort-container .grid-image {
      background-color: #f8f8f8 !important;
    }
    
    @media only screen and (min-width: 768px) {
      .grid-sort-container .grid-image img {
        position: absolute;
        left: 0;
        bottom: 0;
      }
    }
    
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .grid-sort-container .grid-entry:nth-of-type(n+2) .grid-image img {
        position: absolute;
        left: 0;
        bottom: 0;
      }
    }
    in reply to: Postslider javascript #1459998

    where does that main.css inside child-theme folder comes from?

    I guess here is the crux.
    There are a lot of slider rules inside . – commenting them out – will do the job.
    but i think you had to invest more time to look if these are neccessary.

    in reply to: Postslider javascript #1459996

    did you set some css to style that section ?
    i do not have display : grid on my slide-entry-wrap nor on slide-entry

    in reply to: Postslider javascript #1459994

    if you make the screen a bit more narrow – that one of the three images is on the second row : and then hove that image you can see three hover overlays ( move the mouse from top to bottom of the image)

    is it a third-party plugin for hover-styles?

    in reply to: Postslider javascript #1459992

    This is reproducible: if you load the page, and then go to this image, then inspect this image directly with the Dev Tools, and then go to the title in the DOM of the Dev Tools, you will see the same links. Only when you click, the title and the read more button have the “correct” links.

    in reply to: Postslider javascript #1459989

    And now it becomes realy strange – because if you look to the DOM all Links are sometimes the same as the image goes to!
    click to enlarge:

    in reply to: Postslider javascript #1459988

    Aha – I had first checked whether the navigation at the bottom worked and then compared the links at the top. So it is indeed the case that the wrong link exists when you first open it.
    This is strange behaviour.

    in reply to: Postslider javascript #1459985

    did you get it to work correct? Because on my browser the links of all three are the same.
    (image, title and lees meer)

    • This reply was modified 4 months, 4 weeks ago by Guenni007.
    in reply to: CSS – Suche anpassen #1459965

    schau mal ob du noch für andere Browser suffixe benötigst:
    z.B. ::-webkit-input-placeholder

    ::placeholder {
      font-weight: bold;
      opacity: 1 !important;
      color: red !important;
    }

    and by the way: https://css-tricks.com/almanac/selectors/p/placeholder-shown/

    by the way:
    der Doppelpunkt is hier beim Placeholder wichtig – wohingegen, das Eingabefeld dieses nicht benötigt.

    input:placeholder-shown {
      border: 1px dashed red !important;
    }
    
    input::placeholder {
      color: red !important;
      opacity: 1 !important;
    }
    in reply to: Tags H1..H3 always in a single line #1459960

    https://webers-testseite.de/h-tag/

    to have no bad influence on other text-block elements – give a custom class (f.e.: inline-headings) to those text-block elements.

    in reply to: Text for next post #1459955

    deaktiviere doch mal alle Plugins, schau dann nach ( bitte cachings vom Browser löschen und falls aktiviert Merging erneuern ) ob das Problem behoben ist.
    Wenn ja – dann mal ein Plugin nach dem Anderen aktivieren und jeweils testen.

    in reply to: Text for next post #1459942

    hast du eventuell ein snippet in deiner Child-Theme functions.php welches entry-title betreffen könnte. der sollte eigentlich innerhalb von entry-info liegen.
    Was er bei manchen nicht macht. Es scheinen auch nur die avia-post-next betroffen zu sein. Befindet sich der Beitrag im previous link , dann ist der entry-title zu sehen.
    Eventuell ist es auch ein Plugin was hier mit reinfunkt.

    ________

    you may have a snippet in your childtheme functions.php that could affect entry-title. it should actually be inside entry-info.
    Which for some it is not. It also seems that only the avia-post-next is affected. If the post is in the previous link, then entry-title is visible.
    There may also be a plugin involved.

    Brilliant – Thanks again.

Viewing 30 posts - 511 through 540 (of 10,882 total)