
Women Jackets From Popular Brands.

Women Jackets From Popular Brands.

This tutorial shows how to style a WordPress audio player so that the cover art image spins (with CSS animation) when the audio player is displayed in your post.
⚠️ Requirement:
You must use a compatible audio player plugin (the original tutorial refers to “the Audio Player Plugin by Pedro” — a plugin that provides a customizable audio player with download button).
Log in to your WordPress admin dashboard
Go to Appearance → Customize
Scroll down and click Additional CSS
Paste this CSS code:
.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
background: #06801e;
}
.njl-music-widget .mejs-container {
margin: 0 !important;
}
.njl-music-widget .artwork {
display: block;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
float: left;
top: 10px;
line-height: 0;
margin-right: 5px;
margin-bottom: 15px;
width: 100px;
height: 100px;
border-radius: 100px;
border: 5px solid white;
border-left-color: green;
border-right-color: green;
-webkit-animation: spin 3s linear infinite;
animation: spin 3s linear infinite;
}
@keyframes spin {
100% { transform: rotate(180deg); }
}
.njl-music-widget .details {
display: block;
overflow: hidden;
margin-bottom: 10px;
color: #fff;
padding-top: 17px;
padding-left: 100px;
}
Publish your changes
Now your audio player’s cover art (class .artwork) will continuously rotate using the spin animation.
The CSS targets the audio player’s container classes and styles the cover image.
It uses a CSS animation (@keyframes spin) to rotate the image.
You can edit colors, borders, and animation duration to fit your site design.

Downloading a music file instead of playing it in the browser
To make songs download instead of playing in browser, go to file manager. Edit .htaccess and add this code at the bottom.
<FilesMatch ".(?i:mp3)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
<FilesMatch ".(?i:mp4)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
<FilesMatch ".(?i:mpg)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
<FilesMatch ".(?i:mov)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
<FilesMatch ".(?i:flv)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>

A fast website is a must-have in today’s digital world. One effective way to improve your WordPress site’s performance is by offloading your media files. But what does this mean, and how can you do it? Let’s break it down.
Media offloading is the process of moving your website’s media files—like images, videos, and PDFs—to an external storage service. Instead of relying solely on your web host’s server, these files are stored and served from specialized cloud platforms. The result? A leaner, faster site.
Here are some compelling reasons to consider offloading:
Here’s a step-by-step guide to getting started:
Popular options include Amazon S3, Google Cloud, and DigitalOcean Spaces. Choose one that fits your budget and technical requirements.
Plugins like WP Offload Media make the process seamless. These tools integrate WordPress with your chosen cloud storage and automate file transfers.
Once installed, connect the plugin to your cloud storage account. You’ll typically need API credentials to link the two systems securely.
The plugin will allow you to move your current media library to the cloud. This step might take some time, depending on your library’s size.
Double-check that your files load correctly. Visit a few pages and confirm that images and videos appear without errors.
Offloading media files is a simple yet effective way to make your WordPress site faster and more efficient. With cloud storage handling your large files, you can focus on delivering an exceptional experience for your visitors.
Start exploring plugins and cloud services today, and take the first step toward a faster, more scalable website.
Tutorial by Rani
First download the script from here
Open your file manager
public_html or on any sub folder you want to use.
Note:
1. The name you want to use cannot be change because of Monnify policy
2. You cannot change domain except you will have to register another new name with monnify
3. Follow monnify registration rules properly to avoid delaying to even a month without getting activated.
Let’s proceed.
After unzip, visit your site and see the front-end.
You can separate the front-end from backend from admin dashboard too.
We have the following which can be separated into 3 sub pages
SUB DEVIDED SECTIONS
1. Front-end
2. Subscribers backend
3. Admin dashboard
SECTIONS EXPLAINATION
1.Frontend:- main website link where you can get another template and modify and use instead, then link your Subscribers Registration and login link to.
2. Subscribers Backend:- most important part of the script, there is a folder call “Mobile” this where the main script is and the link to submit to monnify for verification and approval. Which is the vtu script holding…
3. Admin dashboard:- another folder call “Admin” you can rename it to any name you can remember so that only you can access it all time you want to login your admin section.
All sections explained next is setup
After unzipping the file you downloaded, next is go to the folder call core
Open it you will see another folder call “Model”
Open it and open next file call model.php
Then you edit the following with yours
public static $host="localhost";
public static $dbName="vt_fty"; //Database Name
public static $username="vt_fty"; // Database Username
public static $password="vt_fty"; //Database Password
public static $dbh;
public $emailUsername="[email protected]"; //Support Email Address
public $emailPassword="Ogijaggd4477"; //Support Email Password
From above codes
Change the following to yours:
1. $dbName=”vt_fty”; //Database Name
2. $username=”vt_fty”; // Database Username
3. $password=”vt_fty”; //Database Password
4.$emailUsername=”[email protected]“; //Support Email Address
5. $emailPassword=”Ogijaggd4477”; //Support Email Password
Then create a new database username and password and user, set its user pamission then download the .sql file inside the unzip files you just unzipped and upload it to your database and boom your done with installation.
Next is setting the vtu portal correctly for funding, APIs etc.
Shared by Rani, member of the defunct Storefront forum.