Site logo

Archived topic

simple text effect to site title

9 replies · Started by Mark on July 5, 2016

Viewing posts 1–10 of 10

Hi Tom,

is there a simple way to add a text effect (a white outline) to a site title?

Hi Mark,

Adding this CSS should work

p.main-title {
    text-decoration: underline;
}

Hi Tom,

I appreciate the quick reply, however, I was after an outline of the words. The link below is my website which the heading is in blue. I am wanting a white outline of the title. So it needs to be a different colour too.

https://www.momentumplusbodycorp.com.au

Hi Mark,

That wasn't Tom. Tom would've got it right the first try :P
Try

p.main-title {
    border: 3px solid #fff;
    padding: 5px;
}

I don't actually know how to exclude the border on the social icons though...

hahahah thanks for that Bishop. I did do this but it seemed to have but a square box around the actual section. I want an effect of a white outline around each of the separate letters.

Bishop almost got it, try this:

.main-title a {
    border: 3px solid #fff;
    padding: 5px;
}

Thanks Tom,

I had a look on that site and seemed to have found a solution that does work for the moment.

Much appreciated.

Great news, glad I could help :)

This archived topic is closed to new replies.