• Resolved dave_udes

    (@dave_udes)


    Hi,

    I would like to know how I can change the background colour of the main title banner of my website?
    (http://seminaires-centrelaurentbeaudoin.espaceweb.usherbrooke.ca)

    When I use the simple background colour, it will only change the background under the main title banner.

    As for the different titles of my posts, they are presently not showing, even when I change the colour of the entry title.

    Please help me fix these bugs.

    Thanks for your help,

    David

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    I’m not sure what you mean by “background colour of the main title banner”. I’m guessing that you mean the header area?

    You would need to install a custom CSS plugin. In the plugin, add this code:

    .site-header {
         background-color: #1d1d1d; /*Change the #1d1d1d to whatever color you like */
    }

    After that, simply choose a color different than white for the primary color option and you’re done.

    Let me know how this goes.

    Thread Starter dave_udes

    (@dave_udes)

    Hi,

    Thanks for your quick reply.

    I added the code at the end of my custom CSS, but no changes were seen:

    p {
    font-size: 16px; /*Change 16 to whatever size you want*/
    }/* Enter Your Custom CSS Here */

    .slide img:hover,
    .entry-thumb img:hover {
    -webkit-transform: none;
    transform: none;
    -ms-transform: none;
    }

    .read-more {
    right: -10px;
    bottom: -20px;
    }

    .site-header {
    background-color: #47a390; /*Change the #1d1d1d to whatever color you like */
    }

    When I added the new background #color for the site-header in the CSS, no changes were seen.

    As for my question for my posts’ title?
    Presently, I can’t make them visible.

    Thanks.

    Sorry, change the code for the .site-header background color to this:

    .site-header {
        background-color: #47a390 !important;
    }

    As I said before, change the primary color to some other color and the post titles will be visible (I guess you mean the slides titles). You now have it set to white.

    Also, you don’t need the code you added for the .read-more.

    Thread Starter dave_udes

    (@dave_udes)

    Great!

    Everything works now. Thanks for your help 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Main title banner colour and title of posts not visible’ is closed to new replies.