Forum Replies Created

Viewing 30 posts - 4,051 through 4,080 (of 11,918 total)
  • Author
    Posts
  • in reply to: More columns in the portfolio or in the blog overview #1328242

    Now that’s what I call: looking for solutions at an early stage!

    in reply to: More columns in the portfolio or in the blog overview #1328230

    hey Mike

    Otherwise, I can just use an image grid, but that would be more cumbersome because I would then have to link each image individually. With the other two options, I would only need to create the individual pages.

    I guess the above solution will satisfy her
    see example-page: https://webers-testseite.de/sabine/

    in reply to: More columns in the portfolio or in the blog overview #1328227

    maybe you consider Mike’s warning and leave this 8col layout only for wide screens

    @media only screen and (min-width: 990px){
    	.grid-col-8 .grid-entry {
    	  width: calc(12.5% - 8.75px) !important;
    	  padding: 0;
    	  margin: 0 10px 10px 0 !important;
    	}
    
    	.grid-col-8 .grid-entry:nth-child(8n) {
    	  margin-right: 0 !important;
    	}
    }
    in reply to: More columns in the portfolio or in the blog overview #1328226

    you can increase the Column Count number there at the drop-down by making appropriate changes in the portfolio.php.

    you can download the whole portfolio.php from pastebin:
    ( this is on basis of enfold 4.8.7.1)
    look: https://pastebin.com/v1s9sdQb
    download: https://pastebin.com/dl/v1s9sdQb

    This new portfolio.php you can upload via ftp to a folder named shortcodes in your child-theme folder:
    child-theme/shortcodes
    To load those edited child-theme alb elements ( see docu ) – you had to place that snippet in your child-theme functions.php:

    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);

    after that in the dom the portfolio will have that extra class : grid-col-8 ( in your case )
    now you only have to put this to your quick css ( or something similar ):

    .grid-col-8 .grid-entry {
      width: calc(12.5% - 8.75px) !important;
      padding: 0;
      margin: 0 10px 10px 0 !important;
    }
    
    .grid-col-8 .grid-entry:nth-child(8n) {
      margin-right: 0 !important;
    }

    ps: 8.75px because 8cols will have 7 spaces between with a setting of 10px it is 70px total space 70px/8 = 8.75px

    in reply to: More columns in the portfolio or in the blog overview #1328222

    but the Media Gallery has the possibility to accept up to 12 columns.
    So put in your 64 Images with link and choose 8 columns with gallery style: small thumbnail

    Edit: sorry i didn’t read on from Otherwise …
    i’m looking now for a portfolio solution

    in reply to: Play reverse animation when scrolling up #1328195

    I suspect that pure css animations can’t do what you want them to do.
    These animations need detection of whether an element is in the viewport or not. These events could be detected via Element.getBoundingClientRect() and this has wide browser support so far, but that seems to be a continuous high performance interaction.
    in the meantime there seems to be a better solution using intersectionObserver. But you would have to add these listeners yourself via child-theme functions.php. But then they are very flexible to use.

    in reply to: Styling search bar on main page [avia_search] #1328157

    There is no cuatom class on that menu-item so you can do that :

    #menu-item-7484 .avia-menu-fx {
        display: none;
    }
    in reply to: Preview of used fonts in Backend and ALB … #1328110

    Thanks – Ismael – it seems to be a problem with the special font – “scripter” – that a “web designer” sent me. It is displayed in the frontend, but not in the backend for reasons still unknown to me – when I switch to another self-hosted font I don’t have these problems. – So now I’m going to search for this font myself.

    Now – how did you implement your child-theme – just over the downloadable preset Child-theme – or do you have additional Settings in your child-theme functions.php like:

    function child_theme_styles() {
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    	wp_enqueue_style( 'child-theme-css', get_stylesheet_directory_uri() .'/style.css' , array('parent-style'));
    }
    add_action( 'wp_enqueue_scripts', 'child_theme_styles' );?>

    PS The above does not lead to conflicts – but it is just an example how a child and a parent could be correlated.

    __________

    Just of topic: On Filezilla you can show hidden files by activating that option by menu – Server – List hidden files
    Just to be sure that there are no other files/folders in the themes folder.

    in reply to: Change logo #1328100

    My guess was that the normal logo was removed ( that’s why the Enfold Standard logo is placed there ), but just not the logo at ” header – transparency options – Transparency Logo”.
    But since all pages are those with transparent header, only the “alternate” logo is displayed in the subtext ( because no shrinking and fixed header is set) , which is just this what we see in the frontend.

    _______________

    _______________
    What you can do too – is remove the logo from Transparent Logo input field. And place your wanted logo on the logo input field. That will work too. Because if there is no logo set for transparency – Enfold will only use the normal logo set on theme options.
    _______________
    PS: However, if you want to replace with writing (font) it doesn’t matter anyway. The css will hide all .logo img/svg.

    in reply to: How to connect columns? #1327957

    here is a gallery with 9 columns – https://webers-testseite.de/gallery-with-8-images/ using flexbox model. ( Gridmodel is very complex – but a mighty tool too ). ( Sorry for page – title it was before a 8 column flex constuction )
    But floating text from one container to another one is hard to get with column layout – and even with table layout.
    One thing you can achieve is a single-column layout, divided into column numbers:
    https://webers-web.info/textblock/

    And Ismaels idea of using grid-row is to nest columns : https://webers-testseite.de/nesting/

    in reply to: How to connect columns? #1327944

    please show me a good looking 12 column layout ;)

    in reply to: SVG logo styling not working since upgrade. #1327874

    the ” !important;” is really outside that curly bracket ? ;)

    in reply to: Change logo #1327863

    And where did you replace on Enfold Options that logo ?
    for transparency headers : header – transparency options – Transparency Logo
    or for non transparent Headers on : Theme Options – Logo

    ________

    you can use the logo subtext for that in child-theme functions.php
    f.e. showing bloginfo name ( that is the text you insert on apearance – customise for Site Title )

    function kriesi_logo_addition($sub){
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      return $sub;
    }
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');

    OR use any text you like in additon:

    
    function kriesi_logo_addition($sub){
      $sub .= "<span class='logo-title'>";
      $sub .= "Your LogoText";
      $sub .= "</span>";
      return $sub;
    }
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');

    Then on quick css:

    .logo img, .logo svg {
      display: none;
    }
    
    .logo .subtext .logo-title {
      font-size: 36px;
      font-weight: 700;
      color: #fff
    }
    /*** if you need different colors on your text after scrolling on shrinking header ***/
    .header-scrolled .logo .subtext .logo-title {
      color: #000
    }

    if you do not have shrinking header you can differ between transparent and non transparent header on that header class: av_header_transparency

    • This reply was modified 4 years, 2 months ago by Guenni007.
    in reply to: Layout changes when inserting code to lose date and time #1327749

    but on your Quick css code you got a closing bracket on this rule ?

    in reply to: Preview of used fonts in Backend and ALB … #1327674

    Small addendum: I don’t really care that much about seeing the font I host myself in the preview. It would be enough for me if I could pre-select a font for the backend display, which is then also displayed.

    in reply to: Difference on filters – concerning Google Recaptcha ? #1327358

    Thanks for clarification.

    in reply to: SVG logos not working after 4.8.7 update #1327008

    from which version you have updated?
    in detail – you don’t need additional css at the beginning – so if there should be older rules to adjust the output of the svg – try to remove this first and then test.
    (make a backup copy of your css you delete).

    this might be possible if we split that column to width and height.
    For me the file-size is more important to know. Sometimes i forgot to optimize my images before uploading – so this is a good control.

    shure?
    you had to hover file-size to see that little arrow!

    i can not reproduce that – i got no errors on console log file:

    in reply to: Validity of code to disable Google Maps #1326841

    i use it in this way to determine a conditional loading – but it might work with global setting too: Link

    Are you working with Block Editor on your pages ? Do you see those layouts like mine from above? And you only can not open the popup Editor windows?

    ( Click the images to enlarge them )
    You are in the edit mode of the corresponding page. And you see this or a similar image. There are in a Onepage mostly Color-Sections as parent container to include other elements like columns or headlines etc.pp ( via drag & drop ).

    If you move the mouse over the small icons in the upper left corner (see first picture) you will see small tooltips that show you what can be done with the element. The right one of these icons opens an editmode to the color-section ( second picture ).

    At the top of the popup window are tabs – click the styling tab.
    In the default case you will see several toggles – one of them is : Background-Image. If you are working with demo files, then there might be images already available. In this case click on the image to insert another one. If not, click the “Insert Image” button. Now you can choose one from the Media Library – or even upload one here.
    The settings below show you the possibilities for the background image.
    You wanted Parallax – then select that in the Background-Attachment. Also you should choose for Background-Repeat : stretch to fit.
    Now don’t forget to save your settings: Save
    And update the page afterwards: Update on the left are the metaboxes.

    in reply to: how to use : avf_color_sets #1326631

    ok – thanks – that is very usefull. And it is as option in dropdown on Styling Tab “Color Section”
    Are there any ALB other than Color-Section and Grid-Row that have the “Background-Color” option?

    Edit : ok – and i tested that nomenklatura is free of use f.e.:

    function guennis_color_set($color_sets){
    	$color_sets['guennis_color'] = 'Guenni';
    	return $color_sets;
    }
    add_filter( 'avf_color_sets', 'guennis_color_set', 999, 1 );

    ;)

    in reply to: Favicon iPhone and Safari #1326619

    wo erwartest du das Favicon zu sehen in Safari? – weil ich ( jedenfalls auf deiner Homepage ) sehe dein favicon – wenn auch im Darkmode zu wenig Kontrast vorhanden ist.:
    where do you expect to see the favicon in Safari? – because I ( at least on your homepage ) see your favicon – even if there is too little contrast in darkmode:

    hier in der Übersicht werden die aber mittels Apple Touch Icon dargestellt – das ist etwas anderes als das FavIcon.
    here in the overview, however, are represented by means of Apple Touch Icon – that is something different than the FavIcon.

    _____________

    PS: obwohl ich sehe, dass du Borlabs Cookie nutzt, öffnet sich das Popup bei deiner Homepage in meinem Firefox nicht – ausserdem sind die Dienste aktiv – auch ohne Zustimmung.

    in reply to: SVG Logos Issue #1325941

    maybe this in the upcomming fixes will give you a hint:

    • fixed: svg logo broken when svg tag in multiple lines
    • fixed: svg logo not displayed for non logged in users
    in reply to: link on the same page inside lightbox #1325938

    that is possible – but then every click – elsewhere on your popup will close the popup – with that trigger – it will only close clicking on that anchor link

    in reply to: link on the same page inside lightbox #1325830

    is it an inline popup or how did you get the anchor link into the popup – please post it here:

    this could be a function that will do the job – you can choose any trigger class for it you like

      $(document).on('click', '.popup-modal-dismiss', function (e) {  
        $.magnificPopup.close();
      });

    this could be part of your inline-popup script or an extra snippet – easier to give advice if i see your code.

    look here : https://kriesi.at/support/topic/graceful-transition-for-pop-up-modals/#post-1205887

Viewing 30 posts - 4,051 through 4,080 (of 11,918 total)