Forum Replies Created

Viewing 30 posts - 4,471 through 4,500 (of 11,877 total)
  • Author
    Posts
  • On the alb options of your columns – you had to choose “no space between columns”
    Then on quick css:

    #top #fullwidthsection .container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    see here: https://webers-testseite.de/color-section-full-width-container/

    if it is important for you that on responsive case the columns are without space and the full-width is still there:

    @media only screen and (max-width: 767px) { 
      .responsive #top #wrap_all #fullwidthsection .container {
        width: 100%;
        max-width: 100%;
      }
      .responsive #top #wrap_all #fullwidthsection .container .flex_column {
        margin-bottom: 0
      }
    }
    in reply to: Colored Addressbar on iOS & iPadOS #1297997

    a similar thing happens on scroll down -see solution here:
    https://kriesi.at/support/topic/a-flash-in-the-header-on-small-screens/

    in reply to: How to increase the dots in a tab section? #1297804

    for the slider …

    .avia-slideshow-dots a {
      height: 25px;
      width: 25px;
      border-radius: 50%;
      margin: 0 5px;
      padding: 5px;
    }

    for the tab section:

    #top .av-tab-section-icon:before {
        font-size: 90px !important; 
    }

    set the max-width and width to 100%

    in reply to: Kategorien löschen #1297534

    ich habe das eben an dem neuesten Enfold getestet. Bei mir geht das
    Wenn ich dann in die Kategorien wechsle danach, erscheint folgende Warnung ( da meine Testumgebung in Englisch ist ):

    meine Befürchtung war das auch die Items – also die Einzelbeiträge in der Kategorie gelöscht sind- erwies sich als nicht richtig.
    Diese Beiträge bekamen dann die Standard Kategorie zugeteilt.

    Du spricht oben ja explizit von 8 columns ( von einer neunten war nicht die Rede )
    Bei 8 columns: 100/8= 12.5
    Bei 9 columns: ? (100/9 ≅ 11.1 )

    ausserdem recht deutlich – wenn du den Umbruch lieber linksbündig haben möchtest …
    https://kriesi.at/support/topic/anpassung-der-galeriespalten-fur-mobiles-adaptation-of-the-gallery-columns-fo/#post-1297391

    nicht space-evenly ( space-around, space-between) sondern flex-start.
    Ich habe es jetzt mal auf der Testseite umgestellt auf flex-start.
    siehe 4/4/1 Situation.

    Selber Lesen macht klug – hier ein informativer Link dazu
    https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    see here a demo with code : https://webers-testseite.de/gallery-with-8-images/

    if you like to have those images on the left side on break ( see 3/3/2 )
    change that rule to:

    .flexed-gallery .avia-gallery-thumb {
        display: flex !important;
        flex-flow: row wrap;
        justify-content: flex-start;
    }
    in reply to: Display featured image on portfolio page #1297377

    maybe this could be an informative topic: https://kriesi.at/support/topic/beitragsbild-eines-blogbeitrags-automatisch-anzeigen/#post-1202606

    this little Snippet enables you to set even on alb based portfolios/posts the featured image if meta-box is set to : “show on single entry”:

    function avf_template_builder_content_postimage_mod($content = ""){
      if(is_singular('post')   && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) || 
         is_singular('portfolio') &&  ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) ) {
            $featuredImage = get_the_post_thumbnail( $the_id, 'entry_with_sidebar' );
            $content = '<div class="post-image">' .$featuredImage. '</div>' . $content ;
          }
      return $content;
    }
    add_filter('avf_template_builder_content', 'avf_template_builder_content_postimage_mod', 10, 1);

    on that line: $featuredImage = get_the_post_thumbnail( $the_id, 'entry_with_sidebar' );
    you decide what dimension the source of the image has ( entry_with_sidebar ) is 845×321

    in reply to: Display featured image on portfolio page #1297375

    you can have on child-theme functions.php this:

    function thumbnail_in_content($atts) {
        global $post;
        return get_the_post_thumbnail($post->ID);
    }
    add_shortcode('thumbnail', 'thumbnail_in_content');

    you use it on the pages / posts as shortcode then: [thumbnail]

    in reply to: Kategorien löschen #1297277

    hast du die denn auch in Beiträgen erstellt, oder doch in Portfolios?
    Dann findest du die unter Portfolio Categories.

    in reply to: Responsive falsche Darstellung #1297264

    Alle Schriften oder sind es die Überschriften?
    Viele der Elemente haben die Möglichkeit die Schriftgrößen von der Screenweite zu setzen.
    zB. die Überschriften – wenn du die Moderne Variante wählst, dann ist da:

    Es ist auch möglich von Vornherein – varialble Einstellungen via quick css zu setzen.
    https://css-tricks.com/how-do-you-do-max-font-size-in-css/

    f.e. this will work on all modern browsers:

    #top.home #av_section_1  .av-special-heading-tag {
     font-size:min(max(48px,10vw),120px) !important;
    }
    in reply to: 4.8.2 bug with beta #1297211

    The link is from me the fix is from Günter ;)
    We are just namesakes

    in reply to: Disable Background images only for tablets #1297210

    and you can now see on your site that the av_section_6 is touched by this – but then you will have a white space!

    in reply to: Disable Background images only for tablets #1297208

    Sorry
    you had to think of the avia-sections too:

    .responsive.avia_mobile #top .avia-section *[style*="url("] ,  
    .responsive.avia_mobile #top .avia-section[style*="url("]{
     background-image : none !important;
    }

    the first asterisk indicates that only the following elements are choosen – so the avia-section itself is missing.

    in reply to: Disable Background images only for tablets #1297155

    see again here: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    What I think you haven’t quite realized is that there isn’t one tablet – there’s a plethora of different sizes and resolutions.
    This is only for ipad:

    /* ----------- iPad 1, 2, Mini and Air ----------- */
    
    /* Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 1) {
    
    }
    
    /* ----------- iPad 3, 4 and Pro 9.7" ----------- */
    
    /* Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 2) {
    
    }
    
    /* ----------- iPad Pro 10.5" ----------- */
    
    /* Landscape */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen 
      and (min-device-width: 1112px) 
      and (max-device-width: 1112px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 2) {
    
    }
    
    /* ----------- iPad Pro 12.9" ----------- */
    
    /* Landscape */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen 
      and (min-device-width: 1366px) 
      and (max-device-width: 1366px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 2) {
    
    }

    and then you have to think of : Galaxy, Nexus, Kindle etc. pp

    I’ve already given you a rough idea of the selector above.
    But as soon as you have sections with url and gradient this won’t work either.
    .avia_mobile – if you only want to have that rule on mobile devices to work and not on small screens.

    .responsive.avia_mobile #top .avia-section *[style*="url("]{
     background-image : none !important;
    }

    What do you do with gaps ?

    in reply to: Css on Mobile version doesn't work #1297152

    a lot of css rules are set by adding the html class to the css code .responsive
    f.e.: .responsive #top .logo img
    if your quick css code only has a rule about .logo img this is not able to overwrite the other selector.
    You had to be more specific than the given rule. ( https://specificity.keegan.st/ )
    ID’s count on that calculation more than classes than pseudo-classes or attribute selectors.

    Is there a live site that can demonstrate your issue – where the rules do not work as you expected?

    in reply to: 4.8.2 bug with beta #1297149
    in reply to: Line beside text in H1 and H2 tags #1296886

    if you open the heading in your layout – where you enter the content ( heading text ) of the heading one option under it you can choose the heading tag.
    on the bottom of that tab there is the heading style. These littel borders belong to the classic style. – if you go and choose modern style these borders are gone.

    But if you have already set many of these headings, changing them manually might be too time consuming.
    Put this to your quick css:

    .special-heading-border {
        display: none !important;
    }
    in reply to: Icon boxes #1296502

    you see the layout here: https://kriesi.at/support/topic/icon-boxes-8/#post-1296421

    It is important that the content of your list is not part of the iconbox.
    The Iconbox element only is for the icon and the heading.
    The content you wanted to have in a scroll window must be separated – because we must have different overflow values.

    The icons you can set what ever you like yourself in the iconbox element.
    The shadow is part of the column setting – so it can be removed or adjusted by yourself.

    It is important that you read the answers carefully – and not only to copy paste the css in the answers.

    : no i can not do that for you – i’m participant as you are – maybe a mod is willing to implement this for you.

    ___________

    or if you are familiar with enfold-shortcodes and you know how to get a new page by this – here is the column-section i used on the bottom:
    and use the css from here: https://kriesi.at/support/topic/icon-boxes-8/#post-1296475

    [av_section min_height='' min_height_pc='25' min_height_px='500px' padding='huge' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' custom_class='telmore1 flexboxed' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-knvcep5w' sc_version='1.0']
    [av_one_third first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_color='#4c4c4c' column_boxshadow_width='10' background='bg_color' background_color='#deeef7' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='column1' template_class='' aria_label='' av_uid='av-4hq6raq' sc_version='1.0']
    
    [av_icon_box icon='ue837' font='entypo-fontello' title='vidste du, at …' position='top' icon_style='' boxed='av-no-box' font_color='' custom_title='' custom_content='' color='custom' custom_bg='#083a96' custom_font='#ffffff' custom_border='#083a96' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' heading_tag='' heading_class='' link='' linktarget='' linkelement='' id='' custom_class='' template_class='' av_uid='av-3yvn15e' sc_version='1.0' admin_preview_bg=''][/av_icon_box]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-3athmaa' sc_version='1.0' admin_preview_bg='']
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Telmore gennemfører en prisændring på kunder</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Vi ændrer oprettelsesgebyret på 5G-modems til 299 kr.</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Online kampagne: Få Lenovo Tab M10 2. Gen 4G med Telmore Musik-abonnement</span>
    [/av_textblock]
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_color='#4c4c4c' column_boxshadow_width='10' background='bg_color' background_color='#deeef7' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='column1' template_class='' aria_label='' av_uid='av-2vojkaa' sc_version='1.0']
    
    [av_icon_box icon='ue837' font='entypo-fontello' title='Kort nyt' position='top' icon_style='' boxed='av-no-box' font_color='' custom_title='' custom_content='' color='custom' custom_bg='#083a96' custom_font='#ffffff' custom_border='#083a96' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' heading_tag='' heading_class='' link='' linktarget='' linkelement='' id='' custom_class='' template_class='' av_uid='av-2qjmbsi' sc_version='1.0' admin_preview_bg=''][/av_icon_box]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-20i9gz6' sc_version='1.0' admin_preview_bg='']
    <span class="test pum-trigger" style="cursor: pointer;">Månedens medarbejder</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Toiletterne er nede, igen</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Vi flytter til Roskilde</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Ny medarbejder i Kollegahjælp</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Toiletterne er nede</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Månedens medarbejder</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Toiletterne er nede, igen</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Vi flytter til Roskilde</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Ny medarbejder i Kollegahjælp</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Toiletterne er nede</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Månedens medarbejder</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Toiletterne er nede, igen</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Vi flytter til Roskilde</span>
    
    <span class="test pum-trigger" style="cursor: pointer;">Ny medarbejder i Kollegahjælp</span>
    [/av_textblock]
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow='aviaTBcolumn_boxshadow' column_boxshadow_color='#4c4c4c' column_boxshadow_width='10' background='bg_color' background_color='#deeef7' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='column1' template_class='' aria_label='' av_uid='av-1nmcieq' sc_version='1.0']
    
    [av_icon_box icon='ue837' font='entypo-fontello' title='Opdateringer på Telman' position='top' icon_style='' boxed='av-no-box' font_color='' custom_title='' custom_content='' color='custom' custom_bg='#083a96' custom_font='#ffffff' custom_border='#083a96' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' heading_tag='' heading_class='' link='' linktarget='' linkelement='' id='' custom_class='' template_class='' av_uid='av-11jp9aq' sc_version='1.0' admin_preview_bg=''][/av_icon_box]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' id='' custom_class='' template_class='' av_uid='av-ofkiky' sc_version='1.0' admin_preview_bg='']
    <ul>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
     	<li style="text-align: left; font-size: 15px;">Nye dokumenter i pakkeoversigten</li>
    </ul>
    [/av_textblock]
    
    [/av_one_third]
    [/av_section]
    
    
    in reply to: Icon boxes #1296485

    maybe you show a little icon that your users can see that there is interaction with that text-block:

    .telmore .av_textblock_section:before,
    .telmore1 .av_textblock_section:before {
      content: "↕";
      position: absolute;
      left: 8px;
      top: 50%;
      font-size: 30px;
      color: #083a96;
    }
    in reply to: Icon boxes #1296475

    now same test page – but with custom-class telmore1 flexboxed
    and the columns set to individual height

    
    /*** same as above - shifting the iconbox ****/
    .telmore1 .iconbox.iconbox_top  {
        position: relative;
        top: -100px;
        margin-bottom: -100px;
        padding-bottom: 20px;
        background-color: transparent !important;
    }
    
    .telmore1 .av_textblock_section {
      height: 400px;    /*** this decides how big / long  is the scroll-window ***/
      overflow-y: scroll;
      background-color: rgba(255,255,255,0.5)   /*** just to see better that there is an extra window to scroll ***/
    }
    
    /**** now flexbox setting : ******/
    .flexboxed .entry-content-wrapper:before,
    .flexboxed .entry-content-wrapper:after {
      display: none
    }
    
    .flexboxed .entry-content-wrapper {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
    }
    
    .flexboxed .entry-content-wrapper .flex_column {
      width: unset;
      flex: 0 1 31%;
      padding: 0;
      margin: 0;
    }
    
    @media only screen and (max-width: 1025px) {
      .flexboxed .entry-content-wrapper {
        justify-content: space-evenly;
      }
      
      .flexboxed .entry-content-wrapper .flex_column {
        width: unset;
        flex: 0 1 42%;
        padding: 0;
        margin: 0 0 90px !important;
      }
    }
    
    @media only screen and (max-width: 915px) {
      .flexboxed .entry-content-wrapper {
         justify-content: center;
      }
      
      .flexboxed .entry-content-wrapper .flex_column {
        flex: 0 1 100%;
      }
    }


    see difference on responsive behavior
    – more control with flexbox model

    https://webers-testseite.de/iconbox-with-equal-height/

    in reply to: Icon boxes #1296421

    just wait a little – i think my first idea could work too – so that will be much easier – …
    here : columns in equal height – see on top: https://webers-testseite.de/iconbox-with-equal-height/
    click to enlarge:

    .telmore .iconbox.iconbox_top  {
        position: relative;
        top: -100px;
        margin-bottom: -100px;
        padding-bottom: 20px;
        background-color: transparent !important;
    }
    
    .telmore .av_textblock_section {
      height: 400px;
      overflow-y: scroll
    }
    
    @media only screen and (max-width: 767px) {
      .telmore .flex_column {
        margin-bottom: 90px !important
      }
    }
    

    but to have a better responsive behavior it would be best to control the columns by flexbox model …

    in reply to: Icon boxes #1296390

    can you please send me the link to that page.
    Or if you can not make it public – copy the shortcodes enfold generates ( you find them on activating the debug mode) Use the code block vor posting here.

    in reply to: Icon boxes #1296329

    ok – read above

    in reply to: images in the search results page #1296291

    first – you can make them smaller – on my page i have this as quick css entry:

    .search-result-image img {
        width: 200px;   /****  here you can adjust the image sizes shown  ***/
        border: 1px solid #aaa
    }
    a.slide-image.search_image {
      overflow: visible !important;
    }
    a.search_image .image-overlay.overlay-type-extern {
      left: 0 !important
    }

    next tip: this line of the replaced code:
    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
    it will take the large images from enfold recalculation as source for those thumbnails.
    if you have:
    $searchthumb = get_the_post_thumbnail( $the_id, 'portfolio_small' ); it will have that source image for it.

    _____________

    see here: https://kriesi.at/support/topic/show-featured-images-in-search-results-page/#post-805253

    now the line is on Enfold 4.8.2 line 33

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    replace that whole line 33 with:

    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
    echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";

    and this to quick css:

    .search-result-counter {
        padding: 0;
    }
    
    .search-result-counter img {
    	width: 100%;
    	height: 100%;
    	border-radius: 100px;
    }
    in reply to: How to increase width of my website? #1296286

    yes – thats it the line
    .avia-fullscreen-slider .caption_bottom .slideshow_caption {
    has no closing bracket ( and is empty – but that is not the reason for the mismatch )
    ______________
    btw. if you use the code tag here on board
    you got two possibilities :

    • click the code button – enter your code – click again ( now it is shown as /code ) the code button.
    • enter your code – activate the whole code you like to have in the code block and click once the code button

    The reason why I am so keen on this is not to be petty, but rather that such errors can simply only be found if the code is also there in the original.
    For example, without this code block, all the quotation marks change into their oblique variants.
    But that could also be an error if they appear like this in the quick css. F.e. by copy them in this notation and paste them to quick css.

    in reply to: Custom elements templates modify in all languages #1296281

    ok

    in reply to: Constrict size of a Grid Row #1296268

    if these are only #footer flex_columns – try:

    @media only screen and (min-width: 768px) { 
      #footer .container {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1600px;
      }
    
      #footer .container::after {
        display: none;
      }
    
      #footer .container .flex_column {
        width: unset;
        flex: 1 1 auto;  /*** the first "1" and the auto value has the possibility that column 2 can grow bigger than the others - else 30%  ***/
        margin: 0 0 20px;
      }
    
      #footer .container .flex_column:nth-of-type(2) {
        padding: 0 20px;
      }
    }

    adjust the wanted column-width with the flex setting
    and adjust the max-width of the container to your needs

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

    You only got one heading row ? Then there must be other things that hamper that responsvie behavior.
    I guess a mod should then look at your page in the backend to find the fault.

    in reply to: lightbox and srcset #1296245

    Danke nochmals – kann also geschlossen werden.

Viewing 30 posts - 4,471 through 4,500 (of 11,877 total)