MH Magazine – colours and font changes, need codes

  • Unknown's avatar

    Hi, I was wondering if it was possible to change the following:

    Main body (where everything sits in the page in front of any background image or colour) – is it possible to alter the colour from anything but white?

    Where it says [Read More] – is it possible to change the colour here too? It might have had that as a default, but I’ve changed colours on so many different things as I’ve played around with the theme that I might have lost track of that.

    Is it possible to change the size of the font within the Spotlight Widgets?

    Can you change the colour of links within posts but not necessarily the header colour?

    Many thanks

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

  • Hi.

    background image or colour

    You can do that in customize / Colors and Backgroudns option.

    [Read More] – is it possible to change the colour here too?

    Yes you can. Here it is the css code that will allow you to do that. I put the same color you have in titles underline. Change it to fit with your needs :)

    .mh-excerpt a {
    color:rgb(0, 184, 230);
    }

    Is it possible to change the size of the font within the Spotlight Widgets?

    If I understood what you want to change, the CSS code you could use is:

    .cp-small, .hp-sidebar {
    font-size: 0.6rem;
    }

    You can (1) try diferent values for font-size and (2) use two different values for .cp-small and .hp-sidebar with two statements:

    .cp-small {
        font-size: 0.6rem;
    }
    .hp-sidebar {
        font-size: 0.6rem;
    }

    Can you change the colour of links within posts but not necessarily the header colour?

    Yes. You can use the following selector: links inside .entry divs inside articles:

    article .entry a {
    color:red;
    }

    I hope this helps you.

  • Unknown's avatar

    that’s great thank you – all very helpful. My question about the background was not the background where you can add a picture, change the colour or select one of the funky graphics on offer; it was about the box that sits over that (effectively in this theme the background within which all the content sits). It defaults to white and in the pre selects, there doesn’t seem to be an option to change it – the background behind it sure. But not this ‘content background’.

    Also, any ides how I get rid of the black lines within the menu and perhaps centralise or space out more equally the menu text>?

  • I see…

    Do you mean:

    media="all"
    .clearfix {
      background-color: rebeccapurple;
    }

    ?

    Of course, change rebeccapurple ;) Is this what you need?

  • Ah! I almost forgot it! :)

    About the black lines separator among menu items, try this:

    .main-nav li {
    border: 0;
    }

    I hope that helps you!

  • The topic ‘MH Magazine – colours and font changes, need codes’ is closed to new replies.