can I put custom css somewhere

  • Unknown's avatar

    I want to make the <hr> line more emphatic instead of light gray. I’d also like to make the menu choices larger than the default. Is either of these possible?

    tx

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

  • Unknown's avatar

    From the WordPress.com support article on Custom CSS:

    “Custom CSS is part of Custom Design, which is a feature of the WordPress.com Premium and WordPress.com Business plans. You can add custom CSS to your WordPress.com blog using the CSS Editor in My Sites → Customize → CSS in your blog dashboard.”

    More information here:
    https://en.support.wordpress.com/custom-css/

  • If you’d like to change your horizontal rule colour, this custom CSS should do the trick:

    /* Change colour of horizontal rules */
    hr {
      background-color: #000000;
    }

    Add it to your Customizer‘s CSS panel. Change the black colour code to whatever colour you prefer.

    As for your menu size, this should do the trick:

    /* Increase menu font size */
    @media screen and ( min-width: 896px  ) {
      .main-navigation ul{
        font-size: 20px;
      }
    }

    Adjust the font size as you like.

    Also just a heads-up that since your site has a Premium plan, you’re entitled to live-chat and email support, accessible here:

    https://wordpress.com/help/contact

    You’re welcome to still post in these forums, but those other support avenues may be faster, and you’ll always get a staff reply.

  • Unknown's avatar

    Perfect! I know wordpress.org and dealing with their themes, etc, but am a bit disoriented in .com, where I’m helping a friend… (email visible only to moderators and staff).

  • No worries! Feel free to get in touch again if you need a hand with anything.

  • The topic ‘can I put custom css somewhere’ is closed to new replies.