colors and comments

  • Unknown's avatar

    Hi

    My theme is delicious magazine and i have CSS
    How can i do the following:
    Change the color of the posts titles in the slider only.
    Remove the Commen count which comes besides the date at each post on the home page.
    Change the color and size of the font of widgets titles, both on sidebar and footer.

    My blog: http://horria.net/

    Your help is highly appreciated.

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

  • Unknown's avatar

    Change the color of the posts titles in the slider only.

    To change the color of the post title in the slider in the Delicious Magazine theme, try this:

    #slides_container .slide .title a {
    color: #FF1717 !important;
    }
  • Unknown's avatar

    Remove the Comment count which comes besides the date at each post on the home page.

    I see you used the following CSS to hide all of the post meta:

    .post-meta {
    display:none!important;
    }

    If you wanted to limit that to the home page, you should add “.home” to the front like this:

    .post-meta {
    display:none!important;
    }

    If you wanted to hide just the comment count/links for posts on the Delicious Magazine home page, try this:

    .home .post-comments, .home .post-meta .sep {
    display: none;
    }
  • Unknown's avatar

    thank you for this. it is working now

  • Unknown's avatar

    thank u again, i used them, nice.
    how can i remove the : view all posts by..
    only this sentence, (keeping my gravatar) which comes at the end of every post?

  • Unknown's avatar

    how can i remove the : view all posts by..
    only this sentence, (keeping my gravatar) which comes at the end of every post?

    To remove the “View all posts by” link at the bottom of posts in the Delicious Magazine theme, give this a try:

    #post-author .profile-link {
    display: none;
    }
  • Unknown's avatar

    it worked, perfectly.
    thanks for that

  • The topic ‘colors and comments’ is closed to new replies.