• Resolved eugeniaarrieta

    (@eugeniaarrieta)


    I just migrated from WordPress.com and I was able to choose between a couple theme colour options.
    Right now my top menu shows a blue underline and the words turn blue on hover. There’s also a blue bar on the bottom of my website.
    How can I change those colours? (considering that I have no programming knowledge whatsoever, but I would be able to enter the code in the CSS live editor)

    Thank you!
    Eugenia

    The page I need help with: [log in to see the link]

Viewing 4 replies - 16 through 19 (of 19 total)
  • Can anyone help me with changing Site Title text on “home-page” only with CSS?
    Thanks in advance.

    @bsrpp not sure what you’re wanting to change with the CSS but you can target it on just the homepage using the following

    .home .site-header-wrapper .site-title {
    	font-size: 20px;
    }

    Thanks for your reply.
    Where Do I put in the words I want to appear on the website

    “RPP Baseball Training”

    in such a CSS

    .home .site-header-wrapper .site-title {
    font-size: 20px;
    }

    Trying to force the words onto the home page vs. theme taking it from my wordpress.

    @bsrpp it would depend on where you want the words to show up and you may have some issues placing them exactly but you would use the content property

    .home .site-header-wrapper .site-title:before {
        content: "RPP Baseball Training";
    }
Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘How do I change the theme colour?’ is closed to new replies.