Increase the font size in ProtonMail

You can increase the font size in ProtonMail by adding this custom CSS. Just remeber to edit the number values with your desired sizes.

h1 {
font-size:24px;
}

h2 {
font-size:22px;
}

h3 {
font-size:20px;
}

h4 {
font-size:16px;
}

h5 {
font-size:14px;
}

h5,h6 {
font-weight:700;
}

h6 {
font-size:12px;
}

Hide only the email icon in DIVI

If you are using DIVI and only need a number displayed. You may notice an email icon appear even though there is no email added.

Enter this CSS code to custom CSS to remove it:

#et-info-phone { display:none !important }

Remove the think line below DIVI header

The thin line below the DIVI header is actually a shadow. To remove the line, add the below to your custom CSS:


header#main-header.et-fixed-header, #main-header{
    -webkit-box-shadow:none !important;
    -moz-box-shadow:none !important;
    box-shadow:none !important;
}

How to fix the overlapping logo on mobile with DIVI

If you are using the DIVI theme with a square shaped logo instead of the standard landscape size. You might find a few overlap issues.

Try to add this css code to Divi - Theme Options - General - Custom Css and change the highlighted value:

@media only screen and (max-width: 980px){
#logo {
min-height: 80px;
}
}

Make DIVI Blog Category pages have 2 columns by default

This little dog is highly energetic, brave, loyal and clever. With owners who take the time to understand how to treat a small dog, yorkshire terrier puppies for sale near me in usa uk canada australia TX WA WI OR SC NC OH PA MI IL Yorkies that become demanding and dependent, appearing to need a lot of human attention and/or developing jealous behaviors, Add this custom CSS code to your DIVI Custom CSS box and you will have blog posts split into 2 columns.

.archive .et_pb_post {
float: left;
width: 45%;
margin-right: 5%;
}
.archive .et_pb_post:nth-child(2n+1) {
clear:both;
}