Forum Replies Created

Viewing 30 posts - 7,171 through 7,200 (of 12,005 total)
  • Author
    Posts
  • in reply to: Changing h1, h2, h3, etc in Enfold #1096093

    First : the place of advanced styling should work. i always use quick css for this because i like to have all changings on one place.
    Second : After setting up on Advanced styling – did you refresh the merged files in Enfold ( Enfold-Child / Performance / ) ?
    Third : Did you cleared all cache ( The browser cache can sometimes be very persistent.)

    On General : The use of child-theme
    A child-theme uses all settings of the parent theme and is for having not lost settings when updating the parent theme.
    Most Settings (CSS) on Child-Theme are loaded after the parent theme css files – so on caskading rules the later one are the one that works ( if the rules are more or equal specific than parent rules)
    there is one child-theme file ( the functions.php ) that did not overwrite parent theme but will add rules to it on general ( rules can be forced in there to overwrite ).

    So if there is a rule on f.e. base.css of parent theme like:
    h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
    it will be overwritten by child-theme css:
    h1 { font-size: 40px}

    but f.e. if there is a rule like :
    .responsive .logo img{margin:0; }
    and you have on your child-theme quick css
    .logo img{margin:0; }
    the first rule is more specific ( has a higher value : see here https://specificity.keegan.st/ )

    For Changings: Enfold got this quick css field ( on Enfold-Child / General Styling )
    there you can read as description:

    Quick CSS
    Just want to do some quick CSS changes? Enter them here, they will be applied to the theme. If you need to change major portions of the theme please use the custom.css file or the Enfold Child theme.

    so to overwrite use quick css ( or the advanced styling) and be more or equal specific.

    If you like to show your page – we can give more help to your code on detail.

    in reply to: Add more the 5 images in a row #1096082

    Yes – and that is the reason why i use for it classes. IDs should be unique on one page. So next row with 8 columns in new color-section – same custom class. ( And you can take what ever you like to use ( for 8 maybe 1/4th columns looks nicer on layout builder backend ) as columns ) ( See the example page on the bottom the two columns are enfold 1/5the columns – but with flex modell they react as 1/2 )

    if you see my homepage – you can see that i have alternating image – text 1/2 columns
    but if these 1/2 go to responsive case and to 100% width there will be image on top of text – that can be reached with this too.
    On Enfold standard behavior this would end in text text image image text text etc.
    You can even set the items order if columns are responsive. ( https://guenterweber.com/ )

    in reply to: Add more the 5 images in a row #1096057

    That is the reason why i always like to have the link to the concerning page
    you can see that it works on my test plattform! ?

    If you do not see the custom Class Input Field on Color-Section go to: Enfold-Child / Layout Builder / Show element options for developers
    mark that field

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Add more the 5 images in a row #1096056

    So I added a color section and put category-images in the Developers: Section ID ???

    what do you read here class or ID ? : https://kriesi.at/support/topic/add-more-the-5-images-in-a-row/#post-1095851

    place a color-section and with custom class like: eight-columns

    IDs got # in front of element name
    Classe get a dot . in front

    so if you put in that phrase to Section ID :

    .page-id-2 #category-images .entry-content-wrapper.clearfix {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    }
    
    .page-id-2 #category-images .entry-content-wrapper .flex_column {
    flex: 0 1 10%;
    margin: 0 !important;
    }
    in reply to: Add more the 5 images in a row #1096027

    The page id is just on my page because i do not want to influence the other example pages on my test site. The custom Class makes it specific enough.
    But for me it is nice to have here on my page the page id just to remind me where i used that css code.

    i guess the category-images is your custom class? see where the dot is of the class on your code!

    .page-id-2 .category-images .entry-content-wrapper.clearfix {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    }
    
    .page-id-2 .category-images .entry-content-wrapper .flex_column {
    flex: 0 1 10%;
    margin: 0 !important;
    }
    in reply to: can't put a video fullscreen, can you help? #1096025

    i guess you don’t need the sidebar rule but if – just make it site specific too:

    .page-id-4393 .content, .page-id-4393 .sidebar {
    padding-top: 0;
    }
    in reply to: can't put a video fullscreen, can you help? #1095951

    hm: click to enlarge the image : overwrite – maybe only for that page ( page-id-4393 ) this padding-top.

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Add more the 5 images in a row #1095880

    And see what happens if flex is set to allowed to grow items and flex-wrap is on wrap. etc. pp – see example page

    Edit : and if you like to have 9, 10 or what ever you like adjust %value or set the absolute width ( for those columns allowed to wrap

    in reply to: Add more the 5 images in a row #1095851

    place a color-section and with custom class like: eight-columns

    put in your color-section 8 columns ( maybe 5th one) – put in those columns your content ( images)

    place this to your quick css:

    .eight-columns .entry-content-wrapper.clearfix {
      display: flex !important;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .eight-columns .entry-content-wrapper .flex_column {
      flex: 0 1 10%;
      margin: 0 !important;
    }

    see here for info: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    see a working example: https://webers-testseite.de/8col-flex/

    in reply to: Adding attachments into contact form? #1095840

    best way is to use CF7 – they have it implemented and you can set up different restrictions ( file type and file size etc.
    the acceptance key is also usefull – because it blocks the whole submit button til it is marked. ( For DSGVO / GDPR ) Reasons

    in reply to: is it possible to loop the post-navigation? #1095838

    ok – so we have to live with the exclusion by css. Or is there a way to do it via $settings[‘excluded_terms’]

    in reply to: can't put a video fullscreen, can you help? #1095835

    you have a padding-top of 50px on content:

    .content, .sidebar {
        padding-top: 0;
    }
    in reply to: avf_customize_heading_settings – how to handle ? #1095688

    thanks – now i know how to do it – but more flexible is the way i use – because i can have on the first slide a h1 tag on the next a h2
    I think that this is a sensible attitude. – Iconboxes besides on one page could be styled separately etc. pp

    in reply to: is it possible to loop the post-navigation? #1095673

    gerne – wie gesagt ich käme auch mit dem css hin, aber sauberer ist diese lösung.

    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: is it possible to loop the post-navigation? #1095471

    Edit: mittlerweile weiss ich das die zeitlich letzte Seite dort als Link erscheint – nicht die oberste Position

    in reply to: is it possible to loop the post-navigation? #1095262

    siehe hier die zugangsdaten: https://kriesi.at/support/topic/is-it-possible-to-loop-the-post-navigation/#post-1095052

    die css Korrektur nehme ich raus damit du direkt siehst, was gemeint ist.
    In der Page Liste steht diese Seite “partner und lieferanten” ganz oben. Die wird wenn man die Seiten aufruft immer wieder als links navigation angezeigt – selbst auf der verlinkten Seite !

    Alle Plugins deaktiviert und alle functions.php einträge hatte ich auch gelöscht. ( damit luden dann auch die edited ALB Elemente natürlich nicht)

    in reply to: is it possible to loop the post-navigation? #1095080

    Everything is OK !!! it was one of the plugins!
    so excuse me for being so impatient and suspecting a mistake on your part.

    _________

    Can you look why only one page is in that side navigation when i open a Page?
    Edit : it is only the page link of the first page in list-view – this link is on all other pages as sidenavigation.

    these are my settings:

    add_filter('avf_post_nav_settings','enfold_customization_postnav', 10, 1);
    function enfold_customization_postnav($settings){
    	$settings['skip_output'] = false;
    	$settings['same_category'] = true;
    	$settings['is_fullwidth'] = false;
    	return $settings;
    }

    maybe you can reproduce it on your test environment too.

    can i exclude it manually ( i just did it with css )

    .avia-post-nav[href*="partner-und-lieferanten"] {
        display: none;
    }
    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: is it possible to loop the post-navigation? #1095078

    ich teste es gerade noch selber, es muss wohl ein Plugin sein. Meine Edited ALB Elements und die Scripte in der child-theme functions.php waren es nicht.
    Ich aktiviere jetzt ein Plugin nach dem anderen um zu sehen, was es sein könnte.

    in reply to: Side navigation arrows in portfolio run backwards #1095069
    in reply to: Prev and Next on Postnav change #1095053
    in reply to: is it possible to loop the post-navigation? #1095052

    na Klar – Danke fürs Nachschauen
    PS Ihr habt bei den Demos noch keine dabei, die auf 4.5.6 ist! oder?

    in reply to: arrange to middle #1094966

    hier gibt es eine schöne Erklärung: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    wichtig ist die Eigenschaften bei dem direkten Parent zu setzen, und dann bei den Items darunter.

    in reply to: arrange to middle #1094963

    Sieh mal was passiert , wenn du diesen Code hier anstatt benutzt:

    .page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap {
        display: flex !important;
        align-items: center !important;
        flex-direction: row;
        justify-content: space-around !important;
        flex-wrap: wrap;
    }
    
    .page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap .slide-entry.flex_column.no_margin {
        flex: 0 1 150px;
    }

    Flex Box Modell ist echt mächtig.
    Die letzt Anweisung besagt, dass die items nicht wachsen dürfen, aber shrinken ja.

    Zu deiner Frage. Jeder Browser hat mittlerweile Developer Tools implementiert. Bei Safari muss man das in den Einstellungen freischalten.
    Die Anderen haben es jederzeit bereit.
    Wenn du das Kontext Menu mittels deiner Maus über einer Stelle auslöst, kannst du bei den Browsern sowas wie “untersuche das” finden (Element untersuchen; untersuchen etc)
    Daraufhin geht ein Fenster mit dem DOM auf und die Eigenschaften (css) werden auch angezeigt.
    Bei Body (#top) befindet sich die page-id- bzw postid- etc. pp

    Sie mal was dein Avatar hier on Board hergibt:

    in reply to: arrange to middle #1094958

    please try this:

    .page-id-2 #av_section_2 .avia-content-slider-inner .slide-entry-wrap {
        display: inline-flex;
        align-items: center;
    }

    you see it is always best to have the real site ;) to give advice.

    in reply to: is it possible to loop the post-navigation? #1094940

    Jetzt mal abgesehen von dem Vertauschen, du siehst schon , was dort ( sieh private content area ) passiert wenn die gleiche Category und loop gewählt wird – versuche doch mal nach rechts zu gehen!

    Das Vertauschen der Richtung wäre jetzt auch gegangen via:

    add_filter( 'avf_post_nav_entries', 'enfold_change_direction_postnav', 10, 2); 
    function enfold_change_direction_postnav($entries, $settings) {
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        return $entries;
    }

    aber wichtiger ist das innerhalb der same Categorie geloopt werden kann.

    in reply to: issue with previous and next navigation in the porfolio #1094913

    Edit: with that new loop function – you have to look again to it. It would be nice to loop in same category !
    And on activating both: same category and loop option the page got post_nav too

    in reply to: Side navigation arrows in portfolio run backwards #1094911

    the filter name has changed on 4.5.6 ( avia – is deprected ):

    add_filter( 'avf_post_nav_entries', 'enfold_change_direction_postnav', 10, 2); 
    function enfold_change_direction_postnav($entries, $settings) {
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
        return $entries;
    }

    if you like it only for portfolio you can edit your code above with the new filter name.

    in reply to: is it possible to loop the post-navigation? #1094904

    By the way : how to change on that new Version 4.5.6 the direction of prev next ?

    in reply to: SSL mixed content issue relating to custom font #1094903

    what if you disable jQuery Migrate on Enfold – Performance ? refresh all cachings after that and regenerate the merged files on Enfold too.

    in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1094901

    Guenter here from Board helped me to get on the way to do it.
    you can download it on GitHub of Kriesi or on my page with comments in the source to see what is newly added.
    https://webers-testseite.de/edited-enfold-alb-elements/#columns

Viewing 30 posts - 7,171 through 7,200 (of 12,005 total)