Forum Replies Created

Viewing 30 posts - 4,201 through 4,230 (of 11,985 total)
  • Author
    Posts
  • 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 4 years, 4 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 4 years, 4 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>
    
    in reply to: Header Extra Elements Phone Number Links #1322539

    and you realy replaced your code ( on phone-info input field ) with mine ???

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/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='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    
    in reply to: Centering buttons from a plugin #1322334

    try this in your quick css :

    .mb-center .mb-container {
      margin: 0 !important
    }
    
    .mb-center a {
      width: 100% !important;
      display: inline-table !important;
      padding: 0 10px;
    }
    
    /*** just a bit more space ***/
    .mb-center a .mb-text {
      line-height: 1.2em !important
    }

    if you come into conflict with desktop look – just wrap the code above in a media query:

    @media only screen and (max-width:767px) {
       /*** code goes here  ***/
    }

    Yes – i found that link too – but i thought that there is in the meanwhile a solution from firefox til now.
    See Date ot that topic: Opened 5 years ago Closed 5 years ago

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

    I’m trying to make the phone number and email clickable in the area above the header

    so i guess it is the area of the header_meta.
    You can insert content to that area by using the phone-info field. As far i can see – you have done this.

    Add that little css to your quick css. – just give it a try
    Copy & Paste this code to your phone-info input field ( replace the other entries )

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/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='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    
    in reply to: Need help with vertically aligning content #1322188

    dear mods, you no longer have to thank there – and certainly not so often :lol: ;)

    in reply to: Fullwidth Sub Menu not sticking to top of screen on mobile #1322186

    the values must be adjusted – f.e. if there is a header_meta – the code above goes to @oladigital_co

    in reply to: Audio player shortcake in classic editor #1322180

    But wait til a mod looks into that topic here again. There must be a reason to exclude the audio-player from mce.

    in reply to: Audio player shortcake in classic editor #1322174

    Go to
    enfold/config-templatebuilder/avia-shortcodes/audio-player have a look on audio-player.php arround line 79

    results in :

    in reply to: Logo link in translation is wrong #1322172

    can you try this in your child-theme functions.php:
    see : Link

    function av_change_logo_link_for_polylang_lang($link){
        if(pll_current_language() == 'en'){
            $link = "https://kriesi.at";
        }
        return $link; 
    }
    add_filter('avf_logo_link','av_change_logo_link_for_polylang_lang');

    on default we can try this too – i do not test it yet as if clause:
    if (get_locale() == 'en_GB') {

    in reply to: Audio player shortcake in classic editor #1322168

    dear Mods and Devs: may i ask you why in the audio-player.php that line is set?
    $this->config['tinyMCE'] = array( 'disable' => 'true' );

    if i comment that out – the audio is in that dropdown list and it works – are there any inconsistencies?
    is it because the element isn’t a self-closing one?

    in reply to: Youtube video not blocked properly #1322115

    well – borlabs offers an iframe option.

    • something like this placed on that page in a codeblock element:
      <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>
      The mfp-hide class will ensure that the div in the codeblock isn’t visible.
    • your button is linking to that ID: #youtube-film ( if you got more than one film – each got his own id ) for each a unique div with that id (could be in the same codeblock)
    • Give a custom-class to your button!
    • Then you had to make your own magnificPopup script to open that class in an inline popup ;)
      the custom-class as trigger with midclick=true, type= 'inline', delegate: 'a', as option

    Link
    maybe you include in that script outside that magnificPopup function
    $('.custom-class').find('a').addClass('no-scroll');

    PS: it will work – but with two buttons on that slider we had to find better selectors ! otherwise the second button will be triggered too.

    as mentioned above give a custom-class in this case to the slider

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

    PPS: because the link isn’t really a youtube link ( remember the link goes to that div with ID: #youtube-film )
    if you like to use it on other places – the ID must have a string with “youtube” maybe you can name them #youtube-1, #youtube-2 etc.

    OR choose as selector: for the anchor : a[href^="#"] ( replace it on both lines ) – it means the link starts with #
    But then the second button in the slider must not be an anchor link of the page. This would also fall into the trigger.
    ________
    Das dort die Vorschaubilder von Youtube gezeigt werden in einer lokalen Version ( daher meine Frage oben ) – wird bei dir nicht der Fall sein !
    Es wird das Standard Borlabs Preview image gezeigt werden.
    Da habe ich ordentlich borlabs und youtube kenntnisse mit eingebracht und eigene Scripte geschrieben.

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

    And you did not test mine ?
    OK –

    Yes – but he is right even on the newest Enfold – the fixed background is not fixed in firefox browsers.

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

    yes you can do it this way too – if you like to have the icons inside the link ( click-active) :

    <a href="tel:3109333123">[av_font_icon icon='ue854' font='entypo-fontello' size='20px' position='left' color='#b02b2c' ][/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='#b02b2c' ][/av_font_icon]  (Email address hidden if logged out) </a>
    

    important to have the icons besides the concerning link : display: inline-block ( or -table )

    .phone-info a {
      display: inline-block
    }

    change the color to whatever you like.

Viewing 30 posts - 4,201 through 4,230 (of 11,985 total)