SMTP Mailer Plugin

tiux4259

Configure a SMTP server to send email from your WordPress site. Configure the wp_mail() function to use SMTP instead of the PHP mail() function.

On occasions where your hosting company doesnt let you use the default Mail() command built into the server configuration it is possible to use the SMTP Mailer plugin to let your wordpress install send out emails through an alternative server by using their smtp settings.

First, heres a link to the plugin itself..

SMTP MAILER HOME PAGE

Adding drop shadow and border to woocommerce product

rai2tpgw

This is a short snippet of code that will add a border and also a drop shadow to the product listings in your woocommerce store.

.woocommerce-page .products li {
border: 1px solid #9ba273;
box-shadow: 8px 8px 12px #aaa;
padding: 10px !important;
min-height: 400px;
}

.woocommerce ul li.product a h3 {
min-height: 60px;
}

Adding css drop shadows and borders to images inside page builder

v3x4xw96

As the title says "Adding css drop shadows and borders to images inside page builder"..

Not so long ago i was using a software package like Photoshop to manually add borders and drop shadows to the images before they were uploaded, This is an easy way for me to complete this task, however my clients dont always have the time or software to replicate this..

Now, using the pagebuilder and a small section of code added to the CSS main file we can now add this ability to let clients choose what images have a border and drop shadow automatically added.

So.. Hers the code That needs to be added to the CSS file...

.border-img-5 .fl-photo-content {
display: inline-block;
line-height: 0;
position: relative;
max-width: 100%;
border: 5px white solid;
box-shadow: 8px 8px 12px #aaa;
}
.border-img-3 .fl-photo-content {
display: inline-block;
line-height: 0;
position: relative;
max-width: 100%;
border: 3px white solid;
box-shadow: 8px 8px 12px #aaa;
}


Important This site makes use of cookies which may contain tracking information about visitors. By continuing to browse this site you agree to our use of cookies.