• Resolved Sara Leen

    (@hajar-mokhtafa)


    Hi all,

    I am using the Fictive theme and as you can see on my website (www.365ayo.com), the header consist of an image within the main image. Is it possible to get rid of the smaller image within the main image and how? Example of this you can find on this website: http://www.stacysnotes.com

    Thank you!

Viewing 10 replies - 1 through 10 (of 10 total)
  • You can remove the small “mystery man” Gravatar by going into your Customizer under Appearance > Customize, and removing the address email from your Gravatar Email field:

    Customize Fictive 1 1 by Automattic tagline

    Let me know if this does the trick.

    Thread Starter Sara Leen

    (@hajar-mokhtafa)

    Yes, it worked ! Thank you, thank you!!

    Can I also you another question?

    When I post something (image or video etc.) and I include a title in the post, the title does not appear anymore. It used to when I just downloaded the theme but it somehow changed. Not sure what I can do about it. Do you?

    Glad that worked!

    When I post something (image or video etc.) and I include a title in the post, the title does not appear anymore.

    Could you provide a link to a couple of examples of this so I can take a look directly?

    Thread Starter Sara Leen

    (@hajar-mokhtafa)

    Hi Kathryn,

    Here is a link with posts that I have all given titels but they are invisible when uploaded: http://www.365ayo.com/blog/type/video/

    Thanks for the example.

    Looks like you’ve hidden post titles in your child theme with this CSS:

    .entry-header {
         display: none;
    }

    If you remove that CSS in your child theme, the post titles will be displayed again.

    If you want to hide certain information in your entry headers but keep other information showing, let me know what you want to hide and what you want to display and I can help you with the CSS if you like.

    Thread Starter Sara Leen

    (@hajar-mokhtafa)

    Thank you for the reply!

    I did indeed put this line in the CSS, because I wanted to get rid of the header that displayed the different icons ‘date’, ‘user’ and ‘comment’. I would however, like to keep the post titles. If you can help me out with that, that would be great!

    Sure!

    To remove the line with the date, poster’s name, and comment link, remove your current custom CSS:

    .entry-header {
        display: none;
    }
    .post-date {
        display: none !important;
    }

    and add this instead of the above:

    .entry-meta {
      display: none;
    }

    That should keep your post titles visible but hide the elements you don’t want. Let me know if that achieves the effect you’re after.

    Thread Starter Sara Leen

    (@hajar-mokhtafa)

    Thank you Kathryn, it worked !!

    I appreciate your time and effort once again. You’re the BEST !

    My pleasure, glad this is what you wanted!

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Header – Image within Main image’ is closed to new replies.