Posted On September 17, 2021

WordPress: Gold Price Widget CSS

kimconnect 0 comments
blog.KimConnect.com >> Codes >> WordPress: Gold Price Widget CSS

Here’s a sample of CSS Code to customize the display of the WordPress’ Gold Pricing Plugin:

.widget_block {
  padding: 0px !important;
  margin: 0px !important;
  border: 0px !important;
  }
  .r1 {
  width: 24.9%  !important;
  }
  .r2 {
  width: 24.9%  !important;
  }
  .r3 {
  width: 24.9%  !important;
  }
  .r4 {
  width: 24.9%  !important;
  }
  .metal-price {
  animation: blinker 10s linear infinite;
  color: red !important;
  }
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  .date {
  background-color: white !important;
  color: black !important;
  }

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Windows 10: Update Script

8/7/2020: there's an updated version of this script here. function updateWindows{# Set PowerShell Gallery as…

How To Upgrade NextCloud 22.1.1 to 22.2.0 When Deployed with Kubernetes & Helm

Step 1: Navigate to nextcloud > html > edit version.php <?php $OC_Version = array(22,1,1,2); $OC_VersionString…

Installing IBM VPN Client

On a Linux Machine # Install VPN Client shellScript=https://support.arraynetworks.net/prx/001/http/supportportal.arraynetworks.net/downloads/pkg_9_4_0_385/MP_Linux_1.2.9/MotionPro_Linux_Ubuntu_x64_build-8.sh cd Desktop wget $shellScript sudo ./MotionPro_Linux_Ubuntu_x64_build-8.sh…