I needed to hide the first value in my dropdown list only on one page because it was not applicable. I used this on DIVI with Formidable PRO and it worked great. I just put the CSS in the Custom CSS. I wanted to hide the first value. I also wanted to do it for ..
Category : CSS
This css trick is very handy to hide something when logged in. I used it for this. When you’re not logged in, you see the login form, but when you’re logged in, you see the logged in info. I wanted to hide this. I use DIVI, so wanted to hide a row module, but you ..
In WordPress to remove the divider line between the main content and sidebar area, you need to write the following css in the Customize > Additional CSS section. @media (min-width: 981px) { #main-content .container:before {display: none !important;} } I found this information from this YouTube video: https://www.youtube.com/watch?v=P0qkHS7Wucc NOTE: YouTube video example uses DIVI theme. I ..
http://www.dynamicdrive.com/dynamicindex8/exitpopup/#mob..
Here’s a link to how to add font awesome icons to your menu. It saves memory because it doesn’t use a plugin and also looks professional. How to Add Icons to Custom WordPress Menus Without Plugins I tried it on a DIVI website and had to add the following css. Keep in mind your menu ..
Add the following code in your style.css Recommended to use a child theme. Tested with DIVI only. .single .et_post_meta_wrapper:nth-child(1) img {display: none !i..
Here’s a great example on how to create a triangle with a custom image inside using CSS3. http://codepen.io/zajonsss..
/* Round images */ .circular img { border-radi..
Add the following code in your child theme style sheet. #main-header { box-shadow: 0 0px 0; -moz-box-shadow: 0 0px 0; -webkit-box-shadow: ..
Here’s an example on how to add space before a H1 header tag. h1.page-title:before {content: “\00a0\00a0\00a0\00a0\00a0..