Customizing CSS Chunk Theme

  • Unknown's avatar

    I just upgraded my blog to allow customization on CSS. I have been reading the tutorials and making minor adjustments here and there, however:
    1. I cannot figure out to remove the gradient effect from the background of the blog. I want it to be solid white.

    2. I want the subhead under the header “Hue.” to be free-standing, no gray box around it.

    Could anyone PLEASE help me?

    My blog is thehuepoint.com theme: Chunk

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

  • Unknown's avatar

    To remove the gradient from the top of the Chunk theme if you have not used custom colors:

    body {
    	background-image: none;
    }

    To remove the gradient from the top of the Chunk theme if you have used custom colors:

    #container {
    	background-image: none;
    }
  • Unknown's avatar

    To remove the shading behind the tagline in the Chunk theme, add this to your Appearance → Themes → Customize → CSS panel:

    #site-description {
    	background: none;
    	background-image: none;
    }
  • The topic ‘Customizing CSS Chunk Theme’ is closed to new replies.