• Resolved Diestrom

    (@diestrom)


    Your theme is one of best that i saw,but i have some problems :

    i wan’t to hide tags in posts i already try to hide it by replace :

    This :

    .logo .description {
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    font-style: italic;
    line-height: 36px;
    margin-left: 20px;

    To :

    .logo .description {
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    font-style: italic;
    line-height: 36px;
    margin-left: 20px;
    display: none;

    But it doesn’t work…

    Also i wan’t to put image behind the logo can you please tell me how.?

    last question :
    How i can hide post author and date?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author acosmin

    (@acosmin)

    You can add a background image by using the Customizer, “Header” section > “Header – Background Image”.

    The code you changed doesn’t have anything to do with tags, you need to undo it.

    You will need a child theme or a custom css plugin to change add some css lines.

    To remove tags add this code:
    .single-content .post-tags-wrap { display: none !important; }

    To hide author and date in single view:

    .single-template-1 .details .detail.index-post-author,
    .single-template-1 .details .detail.index-post-date {
    display: none !important;
    }

    Thread Starter Diestrom

    (@diestrom)

    Thanks you man.Yeah im blind that’s why i don’t saw Header backgroud image…so stupid.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tags,post and image Need Help’ is closed to new replies.