Tagged: , ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1015312
    #1015389

    Hey Horst-Michael,

    You can add a widget in the header and add the widget with the image there.
    Here is how to add the widget

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1015730

    Hallo,
    leider funktioniert es nicht mit Enfold 4.4.x, ich bekomme nur Fehlermeldungen.
    Mein Wunsch-Header: Pictures left, Logo right, Menu below

    • This reply was modified 6 years, 1 month ago by hms.
    #1015738

    Hi,

    Du kannst folgenden Code in die Child theme functions.php einfügen, um ein Bild im Kopfbereich anzuzeigen:

    
    
    add_action('ava_after_body_opening_tag','avia_add_img_to_header', 10, 1);
    function avia_add_img_to_header()
    {
    	$style = 'style="position:absolute;left:10%;top:30px;z-index:9999;"';
    	echo '
    <div class="av_image_header" '.$style.'><img src="https://www.w3schools.com/html/pic_trulli.jpg" alt="Trulli"  width="500" height="333"></div>
    ';
    }
    

    Ersetze die Bild-URL, Alt-Attribut und Width/height mit deinen Werten. Außerdem kannst Du durch anpassen von left:10% und top:30px die Position verändern.

    LG,
    Peter

    #1015754

    Hallo Peter,
    setzte ich den Code ein bekomme ich keine korrekte Darstellung, das Bild ist nicht im eigentlichem Header sondern darüber, wie ein Banner.

    LG
    Michael

    Nachtrag:
    Habe das Problem jetzt gelöst in dem ich im Header/Logobereich ein Hintergrundbild hinzugefügt habe und die von links/oben einlaufen lass.
    Sollte es eine bessere Lösung geben wäre ich für einen Tipp sehr dankbar!

    • This reply was modified 6 years, 1 month ago by hms. Reason: Problem behoben
    #1016426

    Hi,

    Where did you add the previous code? You should put it in the functions.php file. Anyway, I’m glad that you found a workaround. :)

    Best regards,
    Ismael

    #1016551

    Hello Ismael,
    inserted code into the function.php in the child theme!

    Best regards
    Michael

    #1016585

    Hi Michael,

    Thanks for the feedback. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.