Site logo

Archived topic

Site title border

11 replies · Started by Ernesto on July 24, 2019

Viewing posts 1–12 of 12

Hi,
I need to set a border (1 o 2 px, white or another color) to the H1 header title on my site:
I just can't figure out how to do it.

Thanks for your help

Ernesto

I think I didn't explain myself properly, I didn't mean a rectangle box around the H1 tag, like this: http://prntscr.com/ojiyzq

but a border to each letter of the heading H1

--------------------------------------
One more issue, opening the site with a tablet it looks like this: http://prntscr.com/ojj0gb
any hints to solve it?

Thanks once again

but a border to each letter of the heading H1

Not quite sure if I can picture this.

Can you provide a quick example?

Background images are tough to deal with sometimes unfortunately.

You can either try setting the background-size to auto, or apply a different image specifically for the smaller screen using this CSS:

@media (max-width: 768px) {
    .site-header {
        background-image: url(https://IMAGE-URL);
    }
}

Let me know :)

YESSSSS !!! That's the idea!

Thanks!

No problem :)

Leo,
Just one more question:
could this be like this?

.main-title a, .main-title a:hover, .main-title a:visited {
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}

That looks good.

Have you tried it?

Yes Leo, and it works!
Thank you for the hints

Ernesto

No problem :)

This archived topic is closed to new replies.