• Evening!

    I am using the Minamaze theme to create a website for my sister: https://www.yourmove-uk.co.uk

    You can customize the banners with your own text, but there is no option to change the font colour…

    Is this possible at all? Is there a “back door” where i could do this?

    Im relatively new to this, but I do pick things up very quickly if someone could kindly point me in the right direction.

    Thanks ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • To clarify, are you referring to the texts that read “Sell your house with Your Move UK” and “Buy your new home with Your Move UK”? If so, get a custom CSS plugin and try this:

    #slider .featured-title span {
    color: #444;
    }

    Try a site like Colorpicker to get the hex code for the color you’d like.

    Thread Starter hood24t

    (@hood24t)

    Hi Stephen,

    Yes those are the texts im talking about, I just want them black instead of white then they stand out more.

    Thank you for your help, i’ll give it a shot ??

    Thread Starter hood24t

    (@hood24t)

    Amazing thank you! Another quick question whilst I have your attention….Is it possible to change each individual slider text to something different or do they all need to be the same? Also (sorry i realize thats two extra questions) is it possible to do the text in say red but outline it in black?

    Im going through a CSS tutorial but i cant find anything referring to a text outline etc.

    Thanks in advancec ??

    If you want to set the color individually, try this:

    #slider #rslides1_s0 .featured-title span {
        color: white;
    }
    
    #slider #rslides1_s1 .featured-title span {
        color: #ddd;
    }
    
    #slider #rslides1_s2 .featured-title span {
        color: orange;
    }

    The first slide is #rslides1_s0, the second slide is #rslides1_s1, and so on and so forth.

    As for a text outline, you can fake it by doing this:

    #slider .featured-title span {
    	text-shadow:
       -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000;
    }

    Unfortunately, it looks a bit weird if you try to make an outline greater than 1 pixel width.

    Thread Starter hood24t

    (@hood24t)

    Thank you for your quick reply!! I’ll give it a shot now ??

    Thread Starter hood24t

    (@hood24t)

    AMAZING!! Cant believe how excited I am getting about changing the text! Thank you very much for your help, I have no doubt that I will pop up again with more questions but you’ll be glad to know that for now im done!

    Thanks again ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Changing font colours in banner of Minamaze theme?’ is closed to new replies.