Capture attention and make a lasting impression with responsive web design on a desktop, tablet or smartphone. You can do this with media queries. Media queries are a type of coding technique that allows webpages to change their look and feel depending on the device they’re being viewed on. With media queries, you can create ..
Category : CSS
This CSS code fixes the AtoZ form height in the Elementor HTML Code module. It has not been tested elsewhere but should work with a few modifications. .elementor-1046 .elementor-element.elementor-element-a29aeb7,.a2zform .elementor-widget-container{height: 100% !i..
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 ..
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 ..
Are you looking to hide a featured image in a single post on WordPress? There are several ways to hide a featured image in a WordPress single post. Here are a few methods: Using a Plugin: One of the easiest ways is using a plugin like ‘Conditionally Display Featured Image’. This plugin allows you to ..
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..