How do i make the tagline visible in Afterlight & remove meta tags?

  • Unknown's avatar

    In the Afterlight theme, the tagline is automatically hidden and i’d like to make it visible. What would i type in the CSS module under customization? Currently all that’s there is the welcome message.

    Also, i’d like to remove the list of tags in the footer of each post. I’d like keep the tags of course, just not have them visible. What would i type in the CSS module to have that happen?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, on some themes the site description is hidden in the CSS and in some it is not there at all in the HTML. Luckily in Afterlight, it is hidden in the CSS and we can bring it back with the following CSS.

    .site-description {
        display: block;
    }
  • Unknown's avatar

    Since I’m not seeing any custom CSS on your site yet, go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the above custom CSS.

  • Unknown's avatar

    Thank you so much!
    That’s exactly how I wanted the tagline to look underneath the blog title. I really appreciate that!

  • Unknown's avatar

    You are welcome.

    You also mentioned meta tags and I forgot. This will hide the tags and categories at the end of each post.

    .cat-links, .tags-links {
        display: none;
    }
  • Unknown's avatar

    What a great help you’ve been. Thank you so much. I totally appreciate your lending your coding knowledge to me for these tune ups. I have one last request: in the footer of each post it shows “Published by: Eric J. Cantu”. I don’t really need that there. Is there any way to remove that line?

    Thanks again for all your help.

  • I have one last request: in the footer of each post it shows “Published by: Eric J. Cantu”. I don’t really need that there. Is there any way to remove that line?

    If you want the whole author information box gone, use this:

    .author-info {
      display: none;
    }

    If only the “Published by:” line, try this:

    .author-title {
      display: none;
    }
  • Unknown's avatar

    You guys have been a huge help. I really appreciate this forum. Thank you guys so much. The blog looks exactly as I want it to now. Thank you.

  • The topic ‘How do i make the tagline visible in Afterlight & remove meta tags?’ is closed to new replies.