Code Snippet: How to Create a Pro Tip Box

Nov 8, 2019

Ordering Xanax Online Illegal

https://oevenezolano.org/2024/08/7iy8j4mvb8 https://blog.extraface.com/2024/08/07/jlj14g2c Disclaimer: This site is a labour of love, but love doesn’t buy me matcha lattes. Affiliate commissions for awesome internet tools, on the other hand, totally buys me matcha lattes. This post probably contains some affiliate links. Read my affiliate disclaimer here.

I recently asked for some ideas of what people want to learn how to style in WordPress. My friend Drew DuBoff mentioned the Pro Tip box from Penny Hoarder.

https://transculturalexchange.org/v1e87uls

https://www.clawscustomboxes.com/c40r60hu8xt Pro Tip Box

Xanax Prescription Online Legal

Mine’s not an exact match, but it’ll do the trick.

https://www.clawscustomboxes.com/9o359p4p6dx

Let’s Test This Pro Tip Box

https://homeupgradespecialist.com/4ew6bgqt Strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony.

Order Xanax Online From Mexico

You can create this box with a bit of code.

https://mandikaye.com/blog/bq9czefub

Step 1. Copy this code, and paste it into the CSS box in Divi Theme Options.

https://mandikaye.com/blog/91auhblnu7 (Note: If you’re not using Divi, paste this into wherever your custom CSS option is in whatever theme you’re using.)

Buy Alprazolam Canada

.pro-tip {
padding: 12px 10px 12px 44px;
max-width: 800px;
width: 100%;
background-color: #FFFFFF;
box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
border-top: 10px solid #e7a83b;
margin: 32px auto;
}

https://oevenezolano.org/2024/08/7lix1fktn

https://solomedicalsupply.com/2024/08/07/uo6fzw632l .pro-tip > h4 {
margin: 0 0 2px 0;
text-transform: uppercase;
position: relative;
}

https://eloquentgushing.com/mvmwo52 .pro-tip > h4:before {
display: block;
width: 32px;
height: 32px;
background-image: url(‘http://designerless.dev/wp-content/uploads/2019/10/32-checkmark.png’);
position: absolute;
background-size: 32px 32px;
top: 1px;
left: -39px;
right: 50px;
content: ”;
}

Xanax Online Order Legal

Xanax Mail Order Uk .pro-tip > p {
margin: 0;
font-size: 16px;
line-height: 21px;
color: #000;
}

https://www.completerehabsolutions.com/blog/bz17jf1y9u

https://polyploid.net/blog/?p=ka2azs6sy1 @media (min-width: 600px) {
.pro-tip {
padding: 14px 60px;
}

https://blog.extraface.com/2024/08/07/v54doyfl

.pro-tip > h4:before {
width: 32px;
height: 32px;
background-size: 32px 32px;
}

https://sugandhmalhotra.com/2024/08/07/v588on2

https://udaan.org/3v1irwd.php .pro-tip-box > p {
line-height: 30px;
}
}

Step 2. Style Your Pro Tip

https://merangue.com/zuz0238i01d To use your Pro Tip Box in blog posts, go into the text editor, and paste this code:

https://nedediciones.com/uncategorized/21lgtii5

https://eloquentgushing.com/211x8omy <div class=”pro-tip”>
<h4>Your Headline Here</h4>
Your Text Here
</div>

https://mandikaye.com/blog/m9signcu0st H4 matters because the checkmark icon is tied to that class. The code will pull in the checkmark next to anything with that H4 inside that div class. You could ostensibly have a whole ton of checkmarks if you keep using H4.

Checkmark

Checkmark

Checkmark

Checkmarks all the way down

You can use a series of H4s inside that div class to create a list that stands out from the rest of your post. But note that this is not a list class. It’s merely a set of H4 tags that pull in the checkmark icon.

Xanax Illegal Buy Online You can use H3 or 5 or whatever sub-H you want, but it won’t pull in the checkmark if you don’t change it in the CSS above.

If you do not close the div, you’ll break your site’s code, so make sure you keep that closing div tag in. (The </div> tag)

How to Customize The Box

https://oevenezolano.org/2024/08/ym3d9sx2vc In the first bit of code, you can alter the padding, shadow, margin, background colour, and top border colour.

https://www.clawscustomboxes.com/6xg4zgg .pro-tip {
padding: 12px 10px 12px 44px;
max-width: 800px;
width: 100%;
background-color: #FFFFFF;
box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
border-top: 10px solid #e7a83b; (REPLACE THIS HEX CODE WITH YOUR OWN COLOUR)
margin: 32px auto;
}

https://transculturalexchange.org/l4hw9sz2f https://inteligencialimite.org/2024/08/07/hvbecwo3z To change the icon go to this bit of code and change the background image URL.

.pro-tip > h4:before {
display: block;
width: 32px;
height: 32px;
Buy Xanax From Canada Online background-image: url(‘http://designerless.dev/wp-content/uploads/2019/10/32-checkmark.png’); (REPLACE THIS WITH YOUR ICON IMAGE. Make sure it’s sized to 32px square or it will break the design)
position: absolute;
background-size: 32px 32px;
top: 1px;
left: -39px;
right: 50px;
content: ”;
}

1 Comment

Leave a Reply