Make WordPress Themes

Changeset 299173 for mattress-shop


Ignore:
Timestamp:
11/19/2025 09:53:12 AM (5 days ago)
Author:
themedropbox
Message:

New version of Mattress Shop - 1.0.7

Location:
mattress-shop/1.0.7
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mattress-shop/1.0.7/readme.txt

    r295925 r299173  
    2323
    2424== Changelog ==
     25
     26= 1.0.7 =
     27* Added animation on footer and banner cover.
    2528
    2629= 1.0.6 =
  • mattress-shop/1.0.7/style.css

    r295925 r299173  
    66Author URI: https://www.buywptemplates.com/
    77Description: Transform your online business with Mattress Shop, a modern, responsive, and user-friendly theme designed specifically for bedding stores, mattress retailers, furniture outlets, and home décor businesses. Whether you’re selling premium mattresses, pillows, bed frames, toppers, or sleep accessories, this theme gives you everything you need to create a professional and engaging online mattress store. Built with a clean layout and intuitive design, Mattress Shop ensures a smooth shopping experience for customers. It includes seamless integration with an eCommerce plugin, enabling easy product management, secure payment processing, and real-time order tracking. The theme is fully customizable, allowing you to showcase mattress collections, highlight product features like orthopedic or memory foam mattresses, and present pricing details in a visually appealing way. Optimized for SEO and page speed, the design is mobile-friendly and ensures your online bedding shop performs flawlessly on all devices. With built-in tools for product reviews, promotional banners, and customer testimonials, you can enhance credibility and boost sales. Ideal for online furniture shops, bedroom décor stores, and home interior businesses, Mattress Shop provides a professional foundation for growing your digital presence and maximizing conversions in the sleep product market.
    8 Version: 1.0.6
     8Version: 1.0.7
    99Requires at least: 5.9
    1010Tested up to: 6.8
     
    29342934  gap: 10px !important;
    29352935}
     2936/*footer animation*/
     2937footer .footer-box{
     2938    animation: bounceInUp 1s ease forwards;
     2939}
     2940@keyframes bounceInUp {
     2941  0% {
     2942    opacity: 0;
     2943    transform: translateY(3000px);
     2944  }
     2945  60% {
     2946    opacity: 1;
     2947    transform: translateY(-20px);
     2948  }
     2949  75% {
     2950    transform: translateY(10px);
     2951  }
     2952  90% {
     2953    transform: translateY(-5px);
     2954  }
     2955  100% {
     2956    transform: translateY(0);
     2957  }
     2958}
     2959
     2960.banner-cover .banner-left{
     2961   animation: zoomIn 1s ease forwards;
     2962}
     2963@keyframes  zoomIn {
     2964  0% {
     2965    opacity: 0;
     2966    transform: translateY(3000px);
     2967  }
     2968  60% {
     2969    opacity: 1;
     2970    transform: translateY(-20px);
     2971  }
     2972  75% {
     2973    transform: translateY(10px);
     2974  }
     2975  90% {
     2976    transform: translateY(-5px);
     2977  }
     2978  100% {
     2979    transform: translateY(0);
     2980  }
     2981}
Note: See TracChangeset for help on using the changeset viewer.