kat
February 20, 2022, 2:25pm
1
Anyway to put a small dark blur behind BBQ SMOKES?
Anyway do a black outline around BBQ SMOKES?
How to get PG to see VSC changes when they are connected? Now I have to close PG then reopen. Hitting refresh doesn’t work.
<section class="hero" id="hero">
<div class="container">
<div class="global-headline">
<h2 class="sub-headline">BBQ</h2>
<h1 class="headline">Smokes</h1>
</div>
.sub-headline {
font-size: 10.5rem;
font-family: var(--secondary-font);
color: gold;
font-weight: 100;
line-height: .4;
letter-spacing: 2px;
.headline {
color: #fff;
font-size: 4.7rem;
font-family: var(--main-font);
text-transform: uppercase;
font-weight: 900;
letter-spacing: .5rem;
margin-right: -.5rem;
}
RobM
February 20, 2022, 2:46pm
2
Hi @kat ,
When you open your project in VSC, does it pop-up a message that it is connected to Pinegrow?
Cheers,
Bob
kat
February 20, 2022, 5:16pm
3
Yes I get the VSC pop-up when connected or disconnected to PG.
RobM
February 20, 2022, 7:12pm
4
Hmmm… not sure what to think. If they are connected, you shouldn’t need a refresh. I just checked out a project of my own and changes in either are updated. Anything else running that might be blocking the port?
kat
February 20, 2022, 7:19pm
5
I’ve learned out of work around PG quirks. Just thought I might have missed something. Thanks
kat:
Anyway to put a small dark blur behind BBQ SMOKES?
Anyway do a black outline around BBQ SMOKES?
Piro
February 22, 2022, 7:18pm
6
/* Add the blur effect */
filter: blur(8px);
-webkit-filter: blur(8px);
/* Add the outline effect */
-webkit-text-stroke: 1px black;
Pieter (Golive)
2 Likes
kat
February 22, 2022, 10:53pm
7
This really helps, Pieter, my Golive buddy.
You’re the one who referred me to Pinegrow
Outline and shadow work. Unfortunately blur effect blurs the text.
image is your 1 px outline with text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
How do I get a shadow all the way around the text?
@kat use backdrop-filter: blur(5px)
1 Like
Piro
February 23, 2022, 5:06pm
9
You can combine multiple text shadows in PG like this:
h1 {
text-shadow: 1px 1px 5px black , -1px -1px 5px black;
}
1 Like
kat
February 24, 2022, 1:42am
10
text-shadow: 1px 1px 5px black , -1px -1px 5px black;
Lovely @Piro !!!
Not sure why but I couldn’t make the backdrop-filter work. More reading required; thanks @fakesamgregory