Forum Replies Created

Viewing 30 posts - 211 through 240 (of 10,879 total)
  • Author
    Posts
  • in reply to: error strong tag #1468358

    Rikard already said it : in your example – there is the closing strong tag correct with an /
    The slash indicates that the tag is closed – on top you only have opening strong tags !

    
    Podcast: Afhængige Parforhold<strong>.</strong>
    

    PS: only a few tag seems not to have a closing tag – but if you look nearer f.e. to an img tag the opening tag ends with />
    hr and br tags need no closing tag ( although old fashioned guys like me write: <br />)

    in reply to: Hide banner image from categories and subcategories. #1468335

    Answers can only be as good as the questions are precise.
    I don’t think your description of what you want to achieve is clear either. On the one hand you say that the banners should be hidden, but on the other hand you want better resolutions or different aspect ratios.

    Unfortunately I can’t see an example page (As a participant as you are, i do not see private content area ). So I assume you are looking for a better source for the banner images? An image with a better resolution or aspect ratio.

    in reply to: How to change the mouse over text of the logo? #1468309

    you can try in child-theme functions.php:

    function custom_avf_avia_logo_link_title( $link_title ){
    return 'title="Homepage"';
    return $link_title;
    }
    add_filter( 'avf_avia_logo_link_title', 'custom_avf_avia_logo_link_title', 10, 1 );
    in reply to: Parallax column effect reverse #1468297

    under Advanced Tab you got Position – try first relative and the set negative Values – even % or vw will work.
    using absolute: – think of that a floating container to the right will shift to the left side then.
    f.e. two 1/2 columns

    in reply to: Bug: No option for background video to loop #1468293

    I just wanted to use it as a crutch.
    They encode all the movies to their specifications. That way you can be sure that they will run smoothly on as many platforms as possible. Then you can download the result and use it as a self-hosted video.

    in reply to: Bug: No option for background video to loop #1468290

    may i post it in my text page to show you that it runs. However, the cut is not well placed to show a seamless transition
    if you got youtube or vimeo account – upload – let them do their job and download that resulted Video. ;) for selfhosting

    try more fps – all videos i tested were 29,9fps or 30fps

    in reply to: Bug: No option for background video to loop #1468285

    i can not say something about the video – i think it was a pixabay share.
    but if you like to send me a link of your video i test it in my environment.
    you find contact info under my nick

    on my mac – IINA shows : h264, 1288×720 with 29,97fps

    in reply to: Bug: No option for background video to loop #1468280

    i tested it with a selfhosted video (mp4) : WP 6.6.2 and Enfold 6.0.4
    looked at firefox (developer), Chrome and Safari
    https://webers-testseite.de/selfhosted-video/
    on top: fullwidth easy slider.
    below – easy-slider
    ( did you check on styling tab of the slide popup the loop check-mark?)

    in reply to: Enfold back end not working in safari on Sequoia #1468278

    and if you want to bring the containers below the title to the same top position:

    function admin_head_mod() {
    echo '<style type="text/css">
      .avia-advanced-editor-enabled #post-body-content { float: none; }
      .avia-advanced-editor-enabled #normal-sortables .postbox#avia_builder:first-child { margin-top: 0; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    dear dev : it concerns to class avia-advanced-editor-enabled
    why the other browser can manage that – i do not know – i look now inside avia-builder.css – maybe there is something missing.

    because I don’t use the Gutenberg stuff – someone else will have to check if it needs fixing there too.

    in reply to: Enfold back end not working in safari on Sequoia #1468273

    what exactly does not work.
    i tested it under Sequoia and Safari Version 18.0 (20619.1.26.31.6) – and on my Enfold everything seems to work!

    btw: Have you installed on your browsers some extra password manager addons?

    Edit: ok i now tested to make a new page – and thats what you mean. …

    all admin boxes are present but safari does not float correctly:
    you can put this as interims solution to your child-theme functions.php:

    function admin_head_mod() {
    echo '<style type="text/css">
      #post-body-content { float: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    that css entry does not work via quick css – it had to be inserted that way.

    in reply to: 4 Spalten nebeneinander in mobiler Ansicht #1468212

    With the nickname, it’s not too hard to find your site. And when I see container that small (1010px), I know it’s not intentional. So there must be a rule in your ruleset that is not set correctly.

    That css rule is not closed by a curly bracket.

    Insert after the semicolon a curly bracket!

    .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_orange {
    	background-color:var(--enfold-main-color-primary);
    

    don’t know if an @import rule works well over quick css – but is unusual.

    if your question does not concern your own website – then I am sorry, but it should be changed anyway.

    PS: csslint.net shows a parsing error at the pseudo-class: is
    but from my point of view that is correct.

    in reply to: There is a ? on the Home Page under a photo #1468120

    dear mods – can you please shift that post to the closed one and open again – i think i’m on a better way to do that.

    in reply to: There is a ? on the Home Page under a photo #1468119

    sadly the topic is closed: . https://kriesi.at/support/topic/search-function-with-link-list/

    what i got so far:
    https://enfold.webers-webdesign.de/pages

    this is only for pages ( if you like to have that for posts – just change the post-type )
    i managed it by a custom shortcode – then place this as : [glossary] on your page

    function az_index($post_id) {
        $AZposts = get_posts(array(
            'numberposts'       => -1,
            'post_type'         => 'page',
            'orderby'           => 'title',
            'order'             => 'ASC',
            // 'category'           => $cat
        ));
    
        $current = "";
        $nav = "";
        $postlist = "";
        foreach($AZposts as $AZpost) {
            $postLink = get_permalink( $AZpost->ID );
            $firstletter = strtoupper(substr($AZpost->post_title,0,1));
            if($firstletter != $current) {
                $nav .= "<span class='firstletters'><a href='#$firstletter'> $firstletter </a></span> ";
                $postlist .= "<h3 class='firstletter' id='$firstletter'> $firstletter </h3>\n";
                $current = $firstletter;
            }
            $postlist .= "<span><a class='postlink' href='".$postLink ."'>" . $AZpost->post_title.  "</a></span><br>\n";
        }
    
        print $nav . "<br><br>" . $postlist;
    }
    add_shortcode( 'glossary', 'az_index' );

    and :

    .firstletters {
      padding: 0 10px ;
      background: #900;
      margin-right: 5px;
      display: inline-block;
    }
    
    .firstletters a {
      color: #FFF;
      text-align: center !important;
    }

    i tried to have unordered list after the h3 headings – but i couldn’t find a way to do that ( loop is hard to find the place to insert that tags ) – maybe a mod got a good idea

    in reply to: menu and home #1468107

    This is an inline css – so it is set on the element itself.
    Open that color-section – click the advanced tab:

    and see all screewidth options too – if there are values entered. ( just delete all values there) – do not forget to save those settings. And save your page.

    in reply to: Question about the logo in the middle #1468106

    you can do that manually – via dashboard – menu ( place your logo as img tag inside a custom-link menu-item. – img tag goes to label input field )
    this starts with logo top – navigation below ( and then set the logo container to display none ( in desktop mode)

    or have a look at: https://pureinstall.webers-testseite.de/logo-centered/
    this starts with logo left – menu right ( then the hamburger position of logo will be adjusted allready)

    btw – dear devs : Is it intended that the label will be affected when selecting “Show on hover only”?
    On default button it is the icon!

    Anyway – if you do not use that option :

    #top .av_promobox .avia-button-wrap.avia-button-right .avia-button {
      display: flex !important;
    }
    
    #top .av_promobox .avia-button-wrap.avia-button-right .avia_button_icon {
      order: 2;
      margin-left: 15px
    }

    if you do not want to affect all promo box elements with button – use a custom class on that element f.e.: right-icon

    #top .av_promobox .avia-button-wrap.right-icon .avia-button {
      display: flex !important;
    }
    
    #top .av_promobox .avia-button-wrap.right-icon .avia_button_icon {
      order: 2;
      margin-left: 15px
    }
    in reply to: Link to a Text #1468096

    although it waits until the DOM is loaded – maybe a timing delay is working?

    function ava_script_fees_click() {
    ?>
    <script type="text/javascript">
    (function ($) {
      $(document).ready(function () {
        function triggerClick(hash, container) {
          if (window.location.hash === hash) {
            setTimeout(function() {
              $(container).find('.av-fold-button-container').trigger('click');
            }, 300);
          }
        }
    
        triggerClick("#lesson-fees", "#av-fold-unfold-lesson-fees");
        triggerClick("#preschool-fees", "#av-fold-unfold-preschool-fees");
        triggerClick("#music-together-fees", "#av-fold-unfold-music-together-fees");
        
      });   
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_script_fees_click', 9999); 
    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468095

    Or – if you are happy with your current solution – just wait for the next release – I think they will also extend the sticky option for the right header.

    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468086

    Yes – if my fellow participant is happy with it, I’m happy with it too – but manu wrote:

    Of course it would be nicer to have a function to make it scrollable as in the Left Sidebar Menu without the sidebar but my knowledge of php and js is very poor

    in reply to: How to find menu-item identifier for functions.php purposes? #1468071

    nearly most of the main browsers got developer tools. On Safari you had to activate it via the settings – advanced.
    Chrome and Firefox do have that on default activated.
    now navigate with your mouse over an element to inspect and via Context-Menu ( often the rightclick on mouse) you can choose “inspect” or similar to it – on german it is called “untersuchen”

    If you start it the first time – it will show you now Infos you need in a “sub-window” – i prefer to have a separate Window – there are some signs to separate it from the main window:
    (click to enlarge)

    because my mouse was over the menu-item text – this is selected. You find your menu-item if you move up in the DOM.
    PS on the right side you can see the styles concerning to that selected Element.

    in reply to: Enfold demo on localhost #1468043
    in reply to: Link to a Text #1468041

    i do not see your selectors at all on your page
    f.e. i see no class: av-fold-unfold-tuition-fees

    i see only ID’s concerning to your buttons:
    #av-fold-unfold-lesson-fees
    #av-fold-unfold-preschool-fees
    #av-fold-unfold-music-together-fees

    there are changes in your setting ( names ) and these selectors are ID’s

    so may be try this instead:

    function ava_script_fees_click() {
    ?>
    <script type="text/javascript">
    (function ($) {
    	$(document).ready(function () {
    		function triggerClick(hash, container) {
    			if (window.location.hash === hash) {
    				$(container).find('.av-fold-button-container').trigger('click');
    			}
    		}
    
    		triggerClick("#lesson-fees", "#av-fold-unfold-lesson-fees");
    		triggerClick("#preschool-fees", "#av-fold-unfold-preschool-fees");
    		triggerClick("#music-together-fees", "#av-fold-unfold-music-together-fees");
    		
    	});		
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_script_fees_click', 9999);
    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468034

    by the way –
    how to have a child-theme avia_layout.php

    via filter: avf_theme_options_pages

    this child-theme solution works as expected with the edited files from the bottom:

    require_once( get_stylesheet_directory() . '/functions-enfold.php' );
    
    function my_avia_layout_mod($avia_pages){
        $avia_pages['layout']['include'] = get_stylesheet_directory().'/includes/avia_layout.php';
        return $avia_pages;
    }
    add_filter( 'avf_theme_options_pages', 'my_avia_layout_mod', 10, 1 );

    functions-enfold.php: https://pastebin.com/dl/UTGvNGKB (see lines 1556 – 1561)
    – put into root directory of your child-theme
    avia_layout.php: https://pastebin.com/dl/RnmpK2Mu
    – put into includes folder (subfolder of child-theme)

    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468005

    Test is working without changing avia-snippet-sidebarmenu.js

    but: What I noticed on this occasion is that the advanced layerslider are not styled correctly for the header sidebar. What was set for Header Top Centered in the layerslider is suddenly far from being centered. This is of course related to the fixation of the header. Fixed elements are, so to speak, outside the DOM.

    Edit:
    I now know what the problem was: the layer slider has a switch in the advanced project settings. There is a setting called “Fit to Screen Width” where it says : “If enabled, the slider will always have the same width as the viewport, even if a theme uses a boxed layout, unless you choose the “Fit to parent height” full size mode.”

    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468004

    PS: in the newest Enfold 6.04 there is inside avia-snippet-sidebarmenu.js no difference between left and right sidebar.
    Always only as selector for both .html_header_sidebar. So those files could be untouched !

    only that one entry in enfold_functions.php had to be deleted (1556ff):

    if( strpos($header['header_position'] , 'left') === false ){
    	$header['sidebarmenu_sticky'] = 'never_sticky';
    }

    and those entries inside avia_layout.php had to be adjusted ( f.e. for the required lines – see line 210 on my edited file )
    avia_layout.php on pastebin: https://pastebin.com/RnmpK2Mu

    in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1468002

    sadly you do not go to your topics once posted : https://kriesi.at/support/topic/right-sidebar-menu-sticky/

    I find the method of simply using the Header on Left Sidebar variant and simply moving it to the right, while retaining the properties set there, is also easy to implement.

    However, if it is now included in the next version – it is of course the better option.

    in reply to: Layerslider image to stretch full width #1467987

    a different much easier way is using clip-path on those slider wrappers by an inline svg file ( path has to be in relative values – convert for example here: link )
    but disadvantage: you have to synchronize the background-color of that section to the next section – otherwise you got a gap (see green area on example page at the bottom)

    <svg class="bottom-curve">
      <clipPath id="bottom-curve" clipPathUnits="objectBoundingBox"><path d="M1,0.9 s-0.25,0.1,-0.5,0.1 S0,0.9,0,0.9 V0 h1 v0.9"></path></clipPath>
    </svg>
    
    <style>
    .bottom-curve > div {
      -webkit-clip-path: url(#bottom-curve);
      clip-path: url(#bottom-curve);
    }
    </style>

    you see how this works – give then the custom-class: bottom-curve to the slider element or to the color-section.

    in reply to: Layerslider image to stretch full width #1467931

    Can I have a look at this page? ( if you could not post the link here – send me an e-mail)
    because I think it’s easier to achieve this in another way.

    f.e. this way: https://webers-testseite.de/divider-on-sliders/

    at the moment i try to use the given curve divider – that does not fit because it is a konvex Curve … so be a bit patient.
    we can use the konvex Curve of Enfold – but we use than that negative option (invert) – in this way we had to differ on how to transform the divider svg.
    so snippet gets an if / else clause now.

    • This reply was modified 1 month, 3 weeks ago by Guenni007.
    in reply to: Video Player black screen and Full Screen possible? #1467929

    My recommendation is not to host such big video files yourself. As Ismael mentioned – use a video hoster.
    If this happens to you a lot, the smallest Vimeo account is worth it; it doesn’t have any ads or other videos that pop up when you pause or stop watching.

    in reply to: Make active page bold and different colour in menu #1467928

    This is only for top-level menu-items (if you like to have a different selector – tell us. )

    .header_color .main_menu ul:first-child > li.current-menu-item .avia-menu-text {
      font-weight: 700;
    }
Viewing 30 posts - 211 through 240 (of 10,879 total)