Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #610887

    Well I searched the forum and surprised this has never asked before.
    How can I put a banner and featured image just below the post titles.
    I mean
    title
    featured image
    banner
    content and others

    #611002

    Hey tanssu!

    Please take a look here
    https://kriesi.at/support/topic/move-featured-image-below-post-title-date-etc/

    let us know if that works out for you properly

    Regards,
    Basilis

    #611091

    Hi, that works thanks, but what about the banner? I d like to put a banner under the featured image in this set up

    #611285

    Merhabalar!

    Would you like to insert static banner or you would like to have it differently on each post? If you would like to have different banners, you can add your banner manually to the top of your blog posts

    Best regards,
    Yigit

    #611369

    Merhaba,
    Same banner below every post title. Simple kind :)

    #611442

    Merhabalar!

    Can you please post the link to your blog page so we can make sure to provide you accurate instructions? :)

    Regards,
    Yigit

    #611524

    OK

    #611803

    Hi, I sent the link in my previous post as private

    #611897

    Hey!

    Please add following code to functions.php file in Appearance > Editor

    function custom_blog_banner(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.home .slide-content').prepend("<img src='http://kriesi.at/wp-content/themes/kriesi/images/logo.png' />");
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_blog_banner');

    Cheers!
    Yigit

    • This reply was modified 7 years, 11 months ago by Yigit.
    #611936

    it did not work

    #611942

    Hi!

    It does work fine on my end (attached a screenshot in private content field).
    It is on your homepage. Would you wanted to display it elsewhere?

    Cheers!
    Yigit

    #611952

    :) I want to display it only below the posts title on single post page
    I mean it should be like this:
    TITLE
    FEATURED IMAGE
    BANNER
    example link in private

    #611953

    Hey!

    Please change the code to following one

    function custom_blog_banner(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.single-post .slide-content').prepend("<img src='http://kriesi.at/wp-content/themes/kriesi/images/logo.png' />");
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_blog_banner');

    Regards,
    Yigit

    #611972

    Well that doesnt work this time
    This is our custom css codes, maybe thats relevant.

    .ctf-design .entry-content { color: black !important; }
    .ctf-design .entry-title { color: black !important; }
    .ctf-news .entry-content { color: black !important; }
    .ctf-news .entry-title { color: black !important; }

    h2 a:hover {
    color: #ffffff !important;
    }
    .page-id-2294 #av_section_1 .container {
    max-width: 100%;
    padding: 0;
    }
    span.blog-categories, .text-sep-cat, .text-sep-date {
    display: none!important;
    }
    .sidebar_right .inner_sidebar {
    margin-left: 10px;
    margin-right: 0;
    }
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
    width: 100%;
    max-width: 100%;
    }}
    @media only screen and (max-width: 480px) {
    .avia-content-slider .slide-image, .avia-content-slider .slide-image img { width: 100%; }}

    #611974

    Hi!

    Do you mind creating a temporary admin login and posting it here privately?

    Best regards,
    Yigit

    #611988

    OK thanks

    #612002

    Hi!

    I adjusted the code a little. Please review your website now

    Cheers!
    Yigit

    #612011

    Great, thanks a lot Yiğit

    #612033

    Hey!

    You are welcome! Let us know if you have any other questions or issues

    Cheers!
    Yigit

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘banner and featured image below the post title’ is closed to new replies.