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

PowerShell: Reset Failover Clustering Quorum

# Adding Prerequisite Microsoft ClusterFunction installFailoverClustersModule{if (!(get-module -Name "FailoverClusters") ){#Install-WindowsFeature Failover-Clustering | out-null;Install-WindowsFeature RSAT-Clustering-MGMT |…

Basic CSS: Prioritize One Style Over Another

<style>body {background-color: black;font-family: monospace;color: green;}</style><h1>Hello World!</h1>

Basic HTML and HTML5: Create a Set of Checkboxes

<h2>CatPhotoApp</h2><main><p>Click here to view more <a href="#">cat photos</a>.</p><a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying…