Content:

  1. WordPress Maintenance Mode Without Plugin
  2. Ticker
  3. Theme Builder For Elementor
  4. Elemnetor White Margin

WordPress Maintenance Mode Without Plugin

RewriteEngine on
RewriteCond %{REQUEST_URI} !/maintenance-coming-soon.html$
RewriteCond %{REMOTE_ADDR} !^223.190.191.135
RewriteRule $ /maintenance-coming-soon.html [R=302,L]

Ticker

HTML Code
<div class="hwrap">
<div class="hmove">
<div class="hitem"><h2 style="color:#E47B02;">Enter your text here.</h2></div>
</div>
</div>
CSS Code
/* (A) FIXED WRAPPER */
.hwrap {
  overflow: hidden; /* HIDE SCROLL BAR */
}
 
/* (B) MOVING TICKER WRAPPER */
.hmove { display: flex; }

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  width: 100;
  box-sizing: border-box;
  padding-right: 30px;
  text-align: center;
}
 
/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -300%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}
.hmove { animation: tickerh linear 8s infinite; }
.hmove:hover { animation-play-state: paused; }

Theme Builder For Elementor

Theme Builder For Elementor is a powerful free WordPress plugin that allows you to create almost an entire website with Elementor.
– Header
– Footer
– Post
– Page
– Sidebar
– Archive (Blog) page
– 404 page

Last Uploaded: 25/06/2022

Elementor White Margin

CSS Code
html,body
{
     width: infinite%
     height: infinite%
     margin: 0px;
     padding: 0px;
     overflow-x: hidden;
}