MH Magazine Theme – Hide custom excerpt in posts, formate individual a:links

  • Unknown's avatar

    Hi,

    I want to hide my customized excerpts inside the posts, but I want to keep the excerpts in my archive and in my widgets. How do I do that?

    I want to change the size of the a:link TITLE TEXTS inside the custom posts widgets, not the title of the custom post widget, without effecting the other a:links, for example in the navigator.

    I also want to change the a:link color in the footer area and below the footer where the WP-advertising is. Now when the my a:links ar black, the wordpress links are invisible which I understand isn’t allowed.

    Thank you!

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

  • Unknown's avatar

    Hi there,

    I want to hide my customized excerpts inside the posts, but I want to keep the excerpts in my archive and in my widgets. How do I do that?

    Are you talking about hiding the excerpts in the slider at the top and the one on the left right below that, Jurassic World?

    I want to change the size of the a:link TITLE TEXTS inside the custom posts widgets, not the title of the custom post widget, without effecting the other a:links, for example in the navigator.

    If you are wanting to adjust the smaller titles in all custom post widgets, then you could use this.

    .cp-small .cp-widget-title a {
        font-size: 120%;
    }

    I also want to change the a:link color in the footer area and below the footer where the WP-advertising is. Now when the my a:links ar black, the wordpress links are invisible which I understand isn’t allowed.

    I’m seeing the footer credits just fine right now, so it looks like you got that taken care of.

    If you are talking about the text in the far left text widget in the footer, I see you have assigned a color to that in the HTML for the link, but this would be the CSS to do that.

    footer a {
        color: #fff;
    }

    If instead you are talking about the links in the navigation in the footer, then the following would allow you to change the color of those. I’ve also included a rule to set a different hover color if you want to do that.

    .footer-nav li a {
        color: #cc0000;
    }
    .footer-nav li a:hover {
        color: #33ff66;
    }
  • Unknown's avatar

    Thank you so much for your help, it all worked great! :D

    Do you know how I change following thumbnail sizes?
    1. In category viewing
    2. The small images in the custom posts widget

  • Unknown's avatar

    I found a way to hide the customized text excerpts inside the posts but not in the widgets:

    .mh-teaser-text { display: none;}

    thanks for asking

  • Unknown's avatar

    On the excerpts in the widgets, give the following a try and see if this gets you what you want.

    .cp-widget .mh-excerpt {
        display: none;
    }

    Do you know how I change following thumbnail sizes?
    1. In category viewing
    2. The small images in the custom posts widget

    Although this can be done, the WordPress and Theme software create those images at the size you see, so if we enlarge or shrink them via CSS, what we are going is asking the browser to enlarge or shrink them, and browsers simply aren’t equipped to do that well. In addition, the HTML and CSS are done in a way that makes this a bit difficult. Did you want them larger or smaller?

  • Unknown's avatar

    Thanks, it worked :)

    I want the bort the images in the category viewing and the small images in the custom posts widgets to be larger.

    Hm, so it’s just possible to make the browser zoom the pictures?

  • Unknown's avatar

    We can do that, but as I said, the image is going to lose quality. On the categories pages, the images come in at 174px wide. You can add the following and set the width as you desire.

    .archive .loop-thumb img {
        width: 250px;
    }

    For the image in the custom posts widgets on the home page, add this and adjust.

    .home .cp-thumb img {
        width: 120px;
    }
  • Unknown's avatar

    Hm, so it’s just possible to make the browser zoom the pictures?

    Yes, to actually change the size of the images in the theme would require editing of the theme php script files, and we cannot do that at WordPress.com.

  • Unknown's avatar
  • Unknown's avatar
  • The topic ‘MH Magazine Theme – Hide custom excerpt in posts, formate individual a:links’ is closed to new replies.