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

How to Call Functions or Pass Function as Argument

cls   function listClusters{     # List all Clusters in this Domain     $items=get-cluster -domain (get-addomain)     $global:clusters=$items…

PowerShell: How to Call a Batch File to Run-As Administrator

Step 1: Create a Batch File and place it inside C:\scripts @echo off powercfg.exe -x…

Excel Challenge: Update Records with a New Email Domain if It Matches Deprecated Domain

PrimaryEmail (Cell B2) EmailUsername Domain [email protected] =LEFT(B2,FIND("@",B2)-1) =RIGHT(B2,LEN(B2)-FIND("@",B2)) FixedPrimaryEmail =IF(D2="olddomain.org",C2&"@newdomain.org",B2)