Forum Replies Created

Viewing 30 posts - 3,751 through 3,780 (of 11,549 total)
  • Author
    Posts
  • in reply to: Responsive Typography (Feature Request) #1323406

    by the way – i often make my own css for example for headings in this way:

    font-size: min(max(24px, 4vw), 48px);
    

    read here f.e.: https://css-tricks.com/simplified-fluid-typography/

    or use clamp:

    font-size: clamp(100%, 1rem + 2vw, 24px);
    

    see here for browser support: https://caniuse.com/?search=clamp

    in reply to: Footer gone #1323258

    maybe it is time to have a sticky post on top of this forum.
    I guess a lot of participants got child-theme header.php files – and with the new footer.php that comes to conflict.
    see my answer here: https://kriesi.at/support/topic/socket-footer-has-disappeared-after-recent-update/#post-1323255

    in reply to: socket footer has disappeared after recent update #1323255

    Since Enfold 4.8.6.3 several lines of code have been added to the new header.php ( lines 40 to 107 and 146-147 etc. ). The reason for this is the new option for the footer: Curtain Effect.

    So if your installation contains a header.php and/or footer.php in the child theme, you have to update them too. So check via ftp if they are present in the child theme folder.
    So if you already have alternate files there, you should remember why this is the case, because just putting a copy there doesn’t make sense.

    Now create copies of the new (4.8.6.3) files and reapply the former adjustments there. Before you upload them via ftp to the child-theme, save the older files as rollback on your harddisk.

    With such major changes to the parent theme, you must always remember to also renew the theme’s alternate files in your child theme. Of course, then with the changes that justify their presence in the child theme.

    _______


    @bkatzdesign

    To solve now the problem : maybe tell us what files are besides your child-theme style.css ( root directory of the child-theme )
    on default premade Enfold Child – there should be only three files : ( style.css, functions.php and screenshot.png ).
    i do often have a shortcodes folder there. you see on the image that this would be the place for footer.php and header.php files in your child-theme

    i guess you can create on basis of portfolio other custom post types ( often seen as CPT )

    but if i look into the dev tools of the link you noted on first post. these are pages with subpages ( no taxonomies nor categories )

    in reply to: Headline Rotator in lightbox #1323196

    PS

    in reply to: Headline Rotator in lightbox #1323175

    I will make one

    • This reply was modified 3 years, 9 months ago by Guenni007.

    Go to dashboard – settings – permalinks:

    in reply to: Insert image src in the menu #1322941

    by the way : i do not now why you like to have that png in your menu –
    but if you look into the appearance – menu settings on window top right there is “screen options”
    if you activate to see css classes on menu-items you can give a class ( in my case : gradient ) to menu-items then. And with that class you can even have animated backgrounds on menu-items. see : https://webers-testseite.de/

    li.gradient .avia-menu-text {
        color: #fff;
        background: linear-gradient(-45deg,#FFA63D,#FF3D77,#338AFF,#3CF0C5);
        background-size: 600%;
        border: none !important;
        animation: anime 14s linear infinite;
        padding: 10px 20px !important;
        border-radius: 10px !important;
    }

    next way – you can have the enfold options on that menu page to mark the option : “Button Style colored”
    this color can be changed to what ever you like. ( see same link : Impressum )
    and with a border-radius valued with 4 values you can influence each corner separatly of that rectrangle:
    ( top-left top-right bottom-right bottom-left – nomenclatura goes clockwise from top-left corner )

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
      background-color:#aea410;
      border-color:#aea410;
      border-radius: 0 0 10px 10px;
    }

    and f.e. on your screenshot above – you can have that for your contact button too ;)

    in reply to: Error #1322939

    Aha – good to know

    in reply to: Scroll to Top Button Styling – Where do I find it? #1322881

    try this – play with your own colors

    #scroll-top-link {
      color: #c9342f;
    }
    
    #scroll-top-link:hover {
      border: 1px solid #848484;
    }
    in reply to: Header Extra Elements Phone Number Links #1322876

    btw. if you like to have that phone icon mirrored:

    .av_font_icon.phone {
      transform: scaleX(-1) !important;
    }
    in reply to: How can I change the subtitles H6 in icongrid #1322868

    there are jQuery Methods – but a lot of participants here believe that this is not the best method to substitut tags on SEO reasons.

    in reply to: How can I change the subtitles H6 in icongrid #1322867

    A child-theme solution could be to have an own icongrid.php in your child-themes/shortcodes folder.
    This folder had to be created by yourself. Put in a copy of the icongrid.php ( from : enfold/config-templatebuilder/avia-shortcodes/icongrid/ )
    edit that file arround line 1884

    $subtitle_el = 'h6';
    

    and change that to

    $subtitle_el = 'p';
    

    this snippet is for using the child-theme alternative files and comes to 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);

    see docu: Link

    in reply to: Horizontal Scrolling Text in Header #1322808

    i think it will be only a matter of postion or width.
    can you have a look into your page with developer tools.
    try ( to see only if there are some entries ) – then style it in a different way.

    .mtphr-dnt-tick-contents {
        position: relative;
        overflow: visible;
        height: 35px;
        width: 500px;
    }
    in reply to: Insert image src in the menu #1322801

    nicht dafür ! ;)

    in reply to: URGENT: LOST FOOTER WITH UPDATE #1322790

    do you have a footer.php in your child-themes folder ?

    in reply to: Insert image src in the menu #1322779

    and even here there is the colon missing after margin -and the units of the value ( zero could be without unit ) !

    <p style="text-align: left; margin: -10px 0 0 0;"><img class="alignnone size-full wp-image-111" src="https://hr-pflege.de/wp-content/uploads/2021/09/1.png" width="20" height="20"/></p>
    
    in reply to: CSS customization #1322778

    what do you mean by “child css” ? the style.css file of the child-theme ?
    besides, I think the quick css is the solution that is always the fastest to implement, so why avoid it?

    and by the way – do you realy want to give a background-color to the whole width?
    if not – this would be a maybe nicer code:

    .slogan {
        background-color: rgba(0,0,0,0.5);
        display: inline-block;
        width: unset !important;
        padding: 10px 15px 0px;
    }
    in reply to: Insert image src in the menu #1322771

    no – definitly not only the closing tag
    that was a completely wrong way to write down the css. I would be very surprised if it would work anywhere.
    on margin – no separators between the values !
    if you have 4 values on it it is: margin: 10px 0 0 0 ;
    ( means margin-top: 10px ; margin-right: 0; margin-bottom: 0; margin-left: 0 )
    if there are three values: margin: 0 10px 0
    ( means magin-top: 0; margin-right and margin-left: 10px; margin-bottom: 0; )
    if there are two values: margin: 10px 0;
    (means margin-top and margin-bottom : 10px ; margin-right and margin-left: 0 )

    semicolons between different style settings please ( so text-align and margin had to be separated by semicolon )

    allowed values for text-align: left|right|center|justify|initial|inherit;

    All this is not bad, we are all still learning. And no question is too stupid – only not asking is stupid.

    in reply to: Change Symbol in Submenu #1322769
    in reply to: Insert image src in the menu #1322761

    This is something that could not work:

    p style="text-align: margin 0.0.0.0;"
    

    text-align: ?
    margin : no colon is noted above – and no dots between the values (0 0 0 0) – if all have the same value shorten to:
    margin: 0

    i do not know why there had to be a p-tag but if so – a closing p-tag had to be there too

    <p style="text-align: left;  margin: 0;"><img class="alignnone size-full wp-image-111" src="https://hr-pflege.de/wp-content/uploads/2021/09/1.png"/></p>
    
    in reply to: Footer Template not showing after update to 4.8.6.3 #1322760

    There are a lot of changes in the footer – ( curtain effect etc. ) – so if you got f.e. a child-theme footer.php this has to be updated too – to the new version.
    If so – you had to know – why you got a child-theme footer.php that you can transfer your wanted changings to the new footer.php

    in reply to: How delete some Arrows in Submenu #1322684
    .avia_mega_div > ul.sub-menu > li > ul.sub-menu > li > a > span.avia-bullet,
    .avia_mega_div > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > a > span.avia-bullet { display: none }
    in reply to: Change Symbol in Submenu #1322682

    first : if you have no settings on a lot of shortcode settings – you can get rid of it:

    Zur Agentur reinsicht [av_font_icon icon='ue841' font='entypo-fontello' size='19px' position='right'][/av_font_icon]
    

    try that shortcode
    PS : you know how to find those numbers ? ue841 etc.

    • This reply was modified 3 years, 10 months ago by Guenni007.
    in reply to: how to make a table ignore existing css rules #1322681

    if it is realy a custom ID it will be:
    #portfolio-style {… } ( it is change anyway to not uppercase )
    .portfolio-style is a class

    in reply to: Header Extra Elements Phone Number Links #1322678

    now put this to your quick css:
    the first rule is extended – then the second instruction is added

    .phone-info a {
    	display: inline-block;
    	font-size: 14px;
    	font-weight: normal !important;
    	padding-left: 15px
    }
    
    .phone-info .av_font_icon {
    	position: relative;
    	top: -4px;
    	color: #eaac57;
    }

    and in the phone-info code get rid of separator “-”
    or replace with:

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#eaac57' custom_class='phone'][/av_font_icon] (310)933 3123</a><a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' size='20px' position='left' color='#eaac57' custom_class='email'][/av_font_icon]  (Email address hidden if logged out) </a>
    
    • This reply was modified 3 years, 10 months ago by Guenni007.
    in reply to: How to Hide Submenu box #1322598

    Ist der Menupunkt denn noch ein Mega-Menu? – Sind denn da Untermenupunkte? Und warum – wenn du Sie doch ohnehin ausblenden möchtest?
    Hat der Menu-Punkt immer noch die gleiche ID (12984) ?

    Nächster Punkt. Das ist ja ohnehin auf display : none ! der hover style ist der, der interessiert – also versuche:
    __________
    Is the menu item still a mega menu? – Are there submenu items? And why – if you want to hide them anyway?
    Does the menu item still have the same ID (12984) ?
    The mega-menu is on default allready on display : none ! – the hover style is the one that interests – so try:
    ____________
    maybe try better:

    #menu-item-14445:hover .avia_mega_div {
       display: none !important;
    }
    in reply to: My theme stuck in 3.8.4 and I can not update newer version #1322594

    i would update such older Versions allways via ftp in this manner: https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1056107 , because you will have a rollback enfold version if you had to go back.
    And make a complete Backup of your page ( f.e. with duplicator ).

    What about your php and Wordpess Versions? Are these allready on newest one?

    in reply to: how to make a table ignore existing css rules #1322592

    be more specific on your selectors.
    Maybe you give custom ID’s or custom classes to those table.

    in reply to: Youtube video not blocked properly #1322540

    Is it too complicated for you to implement?
    maybe this is better – ( as mentioned above – the second button had to be not an anchor link leading to an id of a color-section or something like this )

    function inline_popup_youtube_link() { 
    ?>
    <script type="text/javascript">
    (function($){
    $(window).on('load', function () {  
    	$('.custom-class').find('a[href^="#"]').addClass('no-scroll');
    	$('.custom-class').magnificPopup({
    		delegate: 'a[href^="#"]',
    		type:'inline',
    		midClick: true,
    	});
     });   
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'inline_popup_youtube_link', 9999);

    Borlabs can block iframes – see : Borlabs – Content Blocker – Youtube :

    This is the shorcode i put inside a div – and set for the div a class : mfp-hide
    This class is the magnificPopup class that is set to display: none
    With that code above – every anchor link that starts with “#” inside that custom-class ( you can have every other name for it ) will open in a lightbox. In this case it is that youtube film – blocked by borlabs cookie til you consent.
    The button itself is linking to manual #youtube-film ( this had to correlate with the div ID that you like to open )

    <div id="youtube-film" class="mfp-hide">[borlabs-cookie id="youtube" type="content-blocker"]<iframe width="100%" height="800" src="https://www.youtube-nocookie.com/embed/Uzjt3fvIlnY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>[/borlabs-cookie]</div>
    
Viewing 30 posts - 3,751 through 3,780 (of 11,549 total)