Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #261327

    Hello,

    I have changed my background from the default black to white.
    The blog titles in the blog archives section seem to be set to white as default and I am unable to change this colour.
    I can only see the headings when I hover over it and it changes to orange?

    Are you able to provide a code to change the colour from white to black?

    Can you also provide a code to change the hover colour from orange?

    Our url is: https://wafflesandlamingtons.com/travelblog/

    Thanks,
    Theo.

    #261330

    Additionally to this, is there a way to set the default text colours to new colours? thanks.

    #261343

    Note: I managed to change the default colour from white to black using the following CSS code:

    a {
    color: #000000
    }

    However, if you could assist with changing colour from orange that would be great.

    Thanks.

    #261358
    tikaram
    Keymaster

    @wafflesandlamingtons: To change the color from orange. Please add the following additional css .

    a:hover {
    	color:#color-code;
    }

    Note : change #color-code with the desired color code.

    Regards,
    Tikaram

    #265152

    Hi tikaram,

    Sorry late reply to this, I thought I would let you know.
    While I am using the CSS Code to change the colour of the text links from white to black

    /*Change link colours to black*/
    a {
        color: #000000
    }

    I am unable to also use the code to change the hover colour, it seems to be that only one of these codes will work at a time.

    Thanks,
    Theo.

    #265199
    tikaram
    Keymaster

    @wafflesandlamingtons: Add the following additional css for hover. It should work

    a:hover {
    	color:#color-code;
    }

    Note : change #color-code with the desired color code.

    Regards,
    Tikaram

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Blog Title Colour’ is closed to new replies.