Skip to main content

Posts

Showing posts from November, 2021

Thank you Page || Woocommerce || Wordpress || Ecommerce

Create a impressive Thank you page using page builder  Creat Page Go to the create page and click add new  Type page title and a heading which is showing order received page Page Title will be your slug/permalink  so name it like Order Completed, Order Received, Thank you for order You can add image, video and gif below the title  Now click publish  Here I created a page called order completed  Next step is install the Plugin which is friendly with woocommerce  Go to Plugins and click add new type thank you page in search box Click install and Activate the Plugin Go to the plugin settings click the checkbox to Enable custom thank you page  And select the thank you page, from select general page options, in my case I created a order completed page so I select this page  After that Click save then click save changes  Watch the HD Video of  order received page All Required steps Done Click the video link go to the  YouT...

Mega Menu

Home News Dropdown Mega Menu Category 1 Link 1 Link 2 Link 3 Link 4 Link 5 Category 2 Link 1 Link 2 Link 3 Link 4 Link 5 Category 3 Link 1 Link 2 Link 3 Link 4 Link 5 <!DOCTYPE html> <html> <head>  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> * {   box-sizing: border-box; } body {   margin: 0; } .navbar {   overflow: hidden;   background-color: #333;   font-family: Arial, Helvetica, sans-serif; } .navbar a {   float: left;   font-size: 16px;   color: white;   text-align: center; ...

Multi-Level Dropdowns

  Nityam Tech Tutorials HTML CSS New dropdown 2nd level dropdown 2nd level dropdown Another dropdown 3rd level dropdown 3rd level dropdown <!DOCTYPE html> <html> <head>   <meta name="viewport" content="width=device-width, initial-scale=1">   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> <style> .dropdown-submenu {   position: relative; } .dropdown-submenu .dropdown-menu {  ...