Forum Replies Created

Viewing 30 posts - 7,771 through 7,800 (of 11,213 total)
  • Author
    Posts
  • in reply to: Change Color body Style on one page #951100

    All ok now – i got on dynamic_avia two merged css files : after beautfying i can extract the quick css again.

    by the way : if we do not mark that option on performance: “Delete old CSS and JS files?” there are “backups” of the old settings?
    how many will there be saved? that was my salvation now – but it should be limited to a certain number, so that the folder does not inflate

    in reply to: Change Color body Style on one page #951094

    No – please erase that answer- it messes all up in that test page.
    All settings are gone ( except the functions.php entries) but quick css and logo and and.

    PS : no worry it is a test-page so not so important.

    in reply to: Mysterious Sad Face at the top of website #951081

    This is a place on source code where normaly no-one comes to.

    Did you have an own edited footer.php file ?
    after that code here: <div id="fb-root"></div>
    there was something placed by wp-stats

    in reply to: SVG Logo #951069

    but you must know your path in your svg file.
    you can open them with a good text-editor like notepad ++ on pc or sublime-text on mac os

    in reply to: SVG Logo #951059

    for example : the BONN is a path on that svg and that path has class st3:
    so on shrinking the opacity is changed from 1 to 0 in one second

    .st3 {
        transition: all 1s ease-in-out;
        opacity: 1
    }
    .header-scrolled .st3 {
        transition: all 1s ease-in-out;
        opacity: 0
    }

    in reply to: SVG Logo #951058

    Aha .
    on advanced settings you can set automatically set class – but i prefer to have: css class to target
    i use a bit meaningful like: change-to-svg

    to have this class added to the enfold logo – i put this to functions.php of my child-theme:

    function add_class_to_logo_img(){
    ?>
    <script>
      (function( $ ) {
          $(function() {
    		$('.logo img').addClass('change-to-svg');
          });
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_head', 'add_class_to_logo_img');

    to force the svg to shrink with the header – this comes to quick css:

    .logo,  .logo a {  display: inline-flex}
    
    .logo svg { width: 450px;
     transition: all 1s ease-in-out;
    }

    transition all is for the effects i set in quick css

    • This reply was modified 6 years, 9 months ago by Guenni007.
    in reply to: SVG Logo #951052

    Well these advanced settings might be nice to have.
    See here and look what happens to the svg on shrinking – or on making the screenwidth smaller !
    https://webers-testseite.de/cynthia/

    You can handle path of the svg on hovering f.e to color them different etc.

    in reply to: SVG Logo #951050

    A link only to see what happend is nice.
    If your svg has no implementation of widht and height – the wordpress will interpret it as 0x0 px image.
    If you define a width for it :
    .logo img { width: 350px } it will be shown.
    or did you use the replacement option with svg Support – means is it a real svg in your html code?

    And if i see your hint with the autoplay.
    if you load the video with options – f.e. as iframe.
    only the first option is with questionmark ? all the other following options have to be added by &

    so videolink?autoplay=1&loop=1&iframe=true etc
    One exception is with youtube videos – if the link is with: watch?v= so allthough there is a ? the first option after video link must have the ? then &

    in reply to: Slider really strange since the new release #951020

    By the way: this code here is to replace the parent ALB with the Child-Theme ALB:

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

    the other code is to dynamically replace some tags – and has nothing to do with the caption title tags

    function replace_tags_with_tags(){
    ?>
    <script>
      (function($) {       
          function replaceElementTag(targetSelector, newTagString) {
            $(targetSelector).each(function(){
              var newElem = $(newTagString, {html: $(this).html()});
              $.each(this.attributes, function() {
                newElem.attr(this.name, this.value);
              });
              $(this).replaceWith(newElem);
            });
          }
        
          replaceElementTag('h3.widgettitle', '<h4></h4>'); // hier kann man nun weitere anfügen immer durch semicolon getrennt
        
      }(jQuery)); 
    </script>
    <?php
    }
    add_action('wp_footer', 'replace_tags_with_tags');
    in reply to: Slider really strange since the new release #951019

    well i guess you are one of those who uses my edited alb elements. Link
    it seems that there are some changings on 4.3 (and 4.3.1) so please download the zip-file again from my page and have a look if this will be than ok:
    https://webers-testseite.de/Slideshows.zip

    Sorry but i need a little time to edit them
    see result: https://webers-testseite.de/cynthia/slideshows/

    in reply to: How to add anchor to headline #950597

    if you are familiar with child-themes and managing some snippets for functions.php of your child-theme:
    i edited the headings alb element to have that option: https://webers-testseite.de/edited-enfold-alb-elements/#headings

    for example i did that on Disclaimer to show : https://webers-testseite.de/impressum/#disclaimer

    in reply to: icons instead phone info on top bar left #950560

    first of all the header is on that page styled to be on the whole width of the screen.
    Goto Enfold Child – Header – Header Behavior – and mark: “Let logo and menu position adapt to browser window”

    this would have been a bit easier to know first.

    for the logo on top left nearby the other images i would do it the same way – but not with your long logo – something like:

    in reply to: icons instead phone info on top bar left #950235

    complete the rule above by:
    (not to much else the width had to be adjusted.

    .responsive #header .social_bookmarks li {
        margin-right: 5px;
    }

    font-size: maybe you only make it normal and let 16px stay:

    #header_meta #avia2-menu a {
        font-size: 16px !important;
        font-weight: normal !important;
    }

    the next questions will cost ;) :lol

    in reply to: icons instead phone info on top bar left #950188

    if you like some gimmicks :lol

    #top #wrap_all .social_bookmarks li a:hover {
        transform: scale(1.4);
        transform-origin: top left;
        transition: 1s all ease-in-out;
        z-index: 3;
    }
    in reply to: icons instead phone info on top bar left #950181

    in you case i would do it this way and for the whole screen-width

    .responsive #header .social_bookmarks li {
        border: none !important;
    }

    * on that case you can goto 27px width / height above (instead of 25px)

    in reply to: icons instead phone info on top bar left #950161

    here on total

    #top #wrap_all .av-social-link-theorytest a:before,
    #top #wrap_all .av-social-link-labs a:before
    {
        content: "";
        width: 25px;
        height: 25px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }
    
    .responsive #top #header .social_bookmarks { display: block !important}
    
    #top #wrap_all .av-social-link-theorytest a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Theory_Test_App_icon.png) no-repeat center center
    }
    
    #top #wrap_all .av-social-link-labs a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Screen_Shot_20180430_at_105941.png) no-repeat center center
    }
    
    #top #wrap_all .av-social-link-theorytest:hover a {
        background-color: #d11a4e !important;
    }
    
    #top #wrap_all .av-social-link-labs:hover a {
        background-color: #46d4fe !important;
    }
    
    @media only screen and (max-width: 767px) {
    
    .responsive #header .social_bookmarks {
    	text-align: left;
    	width: 25%}
    	.responsive #top #header .social_bookmarks {
    	display: inline-block !important;
    }
    .responsive #header .sub_menu {
    	float: right !important;
    	width: 75%;  
    }
    
    .responsive #header .sub_menu ul {
        text-align: right;
    }
    }
    in reply to: icons instead phone info on top bar left #950157

    delete this is obsolete:

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul {
        float: left !important;
    }
    }
    in reply to: icons instead phone info on top bar left #950154

    size: change that to:

    #top #wrap_all .av-social-link-theorytest a:before,
    #top #wrap_all .av-social-link-labs a:before
    {
        content: "";
        width: 25px;
        height: 25px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }
    in reply to: icons instead phone info on top bar left #950153

    this is only by text-align done:

    but if there will be no more social links and sub-menu points we can manage that on one line :

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    	text-align: left;
    	width: 25%}
    	.responsive #top #header .social_bookmarks {
    	display: inline-block !important;
    }
    .responsive #header .sub_menu {
    	float: right !important;
    	width: 75%;  
    }
    .responsive #header .sub_menu ul {
        text-align: right;
    }
    }
    in reply to: Overlay color youtube video #950142

    by the way – was it complex to integrate the edfm-fly-menu to enfold ?

    in reply to: icons instead phone info on top bar left #950135

    give an !important to contain:

    #top #wrap_all .av-social-link-theorytest a::before, #top #wrap_all .av-social-link-labs a::before {
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain !important;
    }

    and btw:

    you can have the hover like social-bookmarks as well:

    #top #wrap_all .av-social-link-theorytest:hover a {
        background-color: #d11a4e !important;
    }
    
    #top #wrap_all .av-social-link-labs:hover a {
        background-color: #46d4fe !important;
    }

    and to get a bit distance between Logo and header_meta in responsive case :

    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul {
        float: left !important;
    }
    }
    • This reply was modified 6 years, 10 months ago by Guenni007.
    in reply to: Background video #950133

    on my 4.3 Enfold that works perfect !

    PS : the new 4.3.1 is there but sadly these fixes aren’t included.

    in reply to: Change "View all results" font hover color #950027

    some seconds faster Mike

    in reply to: css conflict #950016

    if that above was you code you have in it: the quotation marks are not code marks.

    Das waren teilweise geschwungene Anführungszeichen. Dann funktioniert es auch nicht mit dem code.

    in reply to: css conflict #950009

    i think the one span is obsolete .
    And maybe the effect is better if the big i is better visible as Letter and function: try this:
    <p style="text-transform: uppercase; color: #ffffff;">Werden Sie Partner auf der Plattform für Mediziner<span style="color: #dcb505; font-weight: bold; font-size: 1.4rem; vertical-align: top">I</span>nnen</p>

    see here : https://webers-testseite.de/inline-css/

    in reply to: Background video #949986

    Well there is a work around of ismael on that: https://kriesi.at/support/topic/video-autoplay-4/#post-947097

    if you are not familiar with editing php files :here are both files edited complete:

    Look: https://pastebin.com/nQzBcsnn put it in the original folder of enfold/framework/php/ and replace: function-set-avia-frontend.php
    Download: https://pastebin.com/dl/nQzBcsnn

    Look: https://pastebin.com/cSBt7Ebe put this to the original folder of enfold/config-templatebuilder/avia-shortcodes and replace the av-helper-slideshow.php
    Download: https://pastebin.com/dl/cSBt7Ebe


    Guess you don’t need a child-theme solution on this – because the next update will have that fix

    If you are patient to wait first week of may is there so 4.3.1 maybe have this allready !

    Nun habe ich über FTP die neue Version installiert

    hast du über die bestehende Version “drüber” gebügelt. Heißt – drag&drop Enfold Ordner über Enfold Ordner geschoben und Dateien ersetzten lassen?

    Hier liegt beim ftp update meist der Hase im Pfeffer. Enfold hat einiges an Strukturen und Dateien geändert. Vor allem die shortcodes liegen nun in Unterordnern vor. Wenn du also dieses Verfahren oben genutzt hast liegen manche Dateien dann doppelt vor ( iconbox, iconlist etc. pp). daher meine Empfehlung: den alten Enfold Ordner vorher umbennen und dann den gesamten neuen Enfold Ordner hochladen.

    • Use a child-theme always.
    • Update via ftp.
    • Rename your enfold folder to f.e. enfold-old
    • Upload the new enfold folder via ftp
    • Check if all your existing settings work to your full satisfaction.
    • If not delete this new enfold folder via ftp
    • rename the old one back to enfold.

    So you allway can go back to the former status quo

    Das mit dem Umbennen macht nun insofern nur Sinn, um schnell den neuen Ordner hochzuladen. Ein Rollback ist jetzt nicht mehr gegeben.
    Dann kannst du nachher den alten Ordner löschen.
    Das Child-Theme wird beim Updaten nicht gebraucht und auch nicht erneuert. Das ist ja mitunter genau der Sinn. Alle Einträge in die child-Theme functions.php gingen ja dann verloren.

    in reply to: Overlay color youtube video #949699

    can you please answer under the latest thread – it is hard to have in mind what was actually relevant.

    try a different intense but lighter blue: f.e. #236bff

    in reply to: icons instead phone info on top bar left #949644

    well i would do it to make out of those two ( links ) images a social bookmark !

    for that place this to your functions.php of your child-theme

    function avia_add_custom_social_icon($icons) {
    	$icons['Theory-Test'] = 'theorytest';
    	$icons['Labs'] = 'labs';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    And this to your quick css:

    #top #wrap_all .av-social-link-theorytest a:before,
    #top #wrap_all .av-social-link-labs a:before
    {
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background-size: contain;
    }
    
    .responsive #top #header .social_bookmarks { display: block !important}
    
    #top #wrap_all .av-social-link-theorytest a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Theory_Test_App_icon.png) no-repeat center center
    }
    
    #top #wrap_all .av-social-link-labs a:before {
    background: url(https://haqsfashions.website/helixcloudservices/wp-content/uploads/2018/05/Screen_Shot_20180430_at_105941.png) no-repeat center center
    }

    you will than have on Enfold-Child – Options ( click to enlarge )

    these icons will be there where a social bookmark can be – and you can directly determine a link target.

    See here how they would behave on small screens: https://webers-testseite.de

Viewing 30 posts - 7,771 through 7,800 (of 11,213 total)