support

Author Topic: i cant find banners  (Read 1742 times)

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
i cant find banners
« on: January 24, 2025, 03:55:10 AM »
Hello, i cant find the banner in the norator theme
i search in the file manager in the control panel
and i cant find the pictures were is the all the banners
in the new theme and version ???????????

Offline G. O.

  • Full Member
  • ***
  • Posts: 127
  • Karma: +9/-0
    • View Profile
Re: i cant find banners
« Reply #1 on: January 24, 2025, 03:58:33 AM »
here is the file code:


Code: [Select]
<section class="hero-slider-sec top-section">
    <div id="carouselExample" class="carousel slide carousel-dark" data-bs-ride="carousel" data-bs-interval="5000">
        <div class="carousel-inner">
            <div class="carousel-item active">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7a/e.png"
                     class="d-none d-lg-block w-100 h-auto" alt="images" width="100%" height="100%">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7a/f.png"
                     class="d-block d-lg-none w-100 h-auto" alt="images" width="100%" height="100%">
                <div class="carousel-caption d-none d-lg-flex">
                    <div class="container">
                        <div class="row">
                            <div class="col-md-5 text-start">
                                <p class="h5">Feature rich with smart UI</p>
                                <h1 class="my-4 h2"><span class="text-primary">Easy & Fun</span> To Manage</h1>
                                <p class="mb-4">Feature reach shopping cart application right out of the box. Standard features allow
                                    to set up complete eCommerce site with all the tools needed to sell products online.</p>
                                <a href="https://www.globaloverline.com/index.php?rt=content/contact" class="btn btn-outline-dark">Contact Us Now</a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="carousel-item">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7b/0.png" class="d-none d-lg-block w-100 h-auto" alt="images" width="100%" height="100%">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7b/1.png" class="d-block d-lg-none w-100 h-auto" alt="images" width="100%" height="100%">
                <div class="carousel-caption d-none d-lg-flex">
                    <div class="container">
                        <div class="row">
                            <div class="col-md-5 text-start">
                                <h1 class="mb-4">All Screen Size</h1>
                                <p class="mb-4">Natively responsive template implemented with bootstrap library and HTML5. Will look
                                    good on most mobile devices and tablets.</p>
                                <a href="https://www.globaloverline.com/index.php?rt=content/contact" class="btn btn-outline-dark">Request A Demo</a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="carousel-item">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7b/4.png" class="d-none d-lg-block w-100 h-auto" alt="images" width="100%" height="100%">
                <img src="https://www.globaloverline.com/extensions/novator/storefront/view/novator/image/presets/18/7b/3.png" class="d-block d-lg-none w-100 h-auto" alt="images" width="100%" height="100%">
                <div class="carousel-caption d-none d-lg-flex">
                    <div class="container">
                        <div class="row">
                            <div class="col-md-5 text-start">
                                <h1 class="mb-4 h2 slide-3-title">SEO Friendly</h1>
                                <h1 class="mb-4 h2 slide-3-title">Fast Loading</h1>
                                <p class="mb-4 text-white">Natively responsive template implemented with bootstrap library and HTML5.
                                    Will look good on most mobile devices and tablets.</p>
                                <a href="https://www.globaloverline.com/index.php?rt=content/contact" class="btn btn-outline-light">Request A Demo</a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <button class="carousel-control-prev" type="button" data-bs-target="#carouselExample" data-bs-slide="prev">
            <span class="header-arrow rounded-end"><i class="bi bi-arrow-left"></i></span>
        </button>
        <button class="carousel-control-next" type="button" data-bs-target="#carouselExample" data-bs-slide="next">
            <span class="header-arrow rounded-start"><i class="bi bi-arrow-right"></i></span>
        </button>
    </div>
</section>

<script>
    const carousel = document.getElementById('carouselExample');
    const interval = 5000; // 5 seconds

    const transitionClasses = [
        'fade-transition',
        'zoom-transition',
        'rotate-transition',
        'slide-right',
        'slide-left',
        'blur-focus-transition'
    ];

    function randomScrollEffect() {
        const items = document.querySelectorAll('.carousel-item');
        items.forEach(item => item.classList.remove(...transitionClasses)); // Reset transition classes

        const randomClass = transitionClasses[Math.floor(Math.random() * transitionClasses.length)]; // Pick random class

        const activeItem = document.querySelector('.carousel-item.active'); // Find the active item
        if (activeItem) {
            activeItem.classList.add(randomClass); // Apply the random transition
        }
    }

    // Set an interval to apply random effects
    setInterval(randomScrollEffect, interval);
</script>

<style>
    /* Add the animation keyframes */
    .fade-transition {
        animation: fadeEffect 1s ease;
    }

    @keyframes fadeEffect {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .zoom-transition {
        animation: zoomEffect 1s ease;
    }

    @keyframes zoomEffect {
        from { transform: scale(0.8); }
        to { transform: scale(1); }
    }

    .rotate-transition {
        animation: rotateEffect 1s ease;
    }

    @keyframes rotateEffect {
        from { transform: rotateY(90deg); }
        to { transform: rotateY(0); }
    }

    .slide-right {
        animation: slideRightEffect 1s ease;
    }

    @keyframes slideRightEffect {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }

    .slide-left {
        animation: slideLeftEffect 1s ease;
    }

    @keyframes slideLeftEffect {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .blur-focus-transition {
        animation: blurFocusEffect 1s ease;
    }

    @keyframes blurFocusEffect {
        from { filter: blur(5px); }
        to { filter: blur(0); }
    }
</style>
« Last Edit: January 24, 2025, 05:06:38 AM by Basara »
Thank you...
G.O.

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #2 on: January 24, 2025, 04:00:27 AM »
ok i see the code but were is the Path ??
tell me the path
thanks

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #3 on: January 24, 2025, 04:15:19 AM »
i have problem with the banners after 1.4
the blue theme the first theme the blue is ok now
 :o :o :o :o :o :o :o :o :o :o :o :o :o

i have problem with the themes in the control panel and the manager!
the norator and the default theme have banners that i can not chage
im looking in the control panel in the file manager for the pictures
and i dont see the banners i want to chage all banner in the 2 themes
i have both and i want to change all banner but in the File Manager
i cant find them i want the path or the code to chage all, thanks
« Last Edit: January 24, 2025, 04:20:28 AM by kounamouta »

Offline G. O.

  • Full Member
  • ***
  • Posts: 127
  • Karma: +9/-0
    • View Profile
Re: i cant find banners
« Reply #4 on: January 24, 2025, 04:15:58 AM »
ok i see the code but were is the Path ??
tell me the path
thanks


try to find this block: Novator Main Page Carousel Banner Slider
Thank you...
G.O.

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #5 on: January 24, 2025, 04:24:19 AM »
please help me both sites not look good
« Last Edit: January 24, 2025, 05:30:33 AM by kounamouta »

Offline Basara

  • Administrator
  • Hero Member
  • *****
  • Posts: 6070
  • Karma: +284/-2
    • View Profile
Re: i cant find banners
« Reply #6 on: January 24, 2025, 05:09:06 AM »
Hello, i cant find the banner in the norator theme
i search in the file manager in the control panel
and i cant find the pictures were is the all the banners
in the new theme and version ???????????
Hello.
The banners are not stored as files, so you won't be able to find them that way. Instead, banners are typically HTML code saved in your database as AbanteCart Blocks.
https://abantecart.atlassian.net/wiki/spaces/AD/pages/11763764/Pages+Layouts

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #7 on: January 24, 2025, 05:13:29 AM »
tell me the file and the path so i can find it thanks

so i want the file and the path to fix this thanks
« Last Edit: January 24, 2025, 05:33:14 AM by kounamouta »

Offline G. O.

  • Full Member
  • ***
  • Posts: 127
  • Karma: +9/-0
    • View Profile
Re: i cant find banners
« Reply #8 on: January 24, 2025, 06:26:03 AM »
tell me the file and the path so i can find it thanks

so i want the file and the path to fix this thanks

in your admin dashboard go to: Design > Blocks and search for that Block.

if you want to add to layouts in your website go to: Design > Layouts and add that block to pages you want it to be appeared.
Thank you...
G.O.

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #9 on: January 25, 2025, 03:02:31 AM »
yes this is not working for me . i ask for something! that i white before!
« Last Edit: January 25, 2025, 03:04:16 AM by kounamouta »

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #10 on: January 25, 2025, 03:06:46 AM »
if you dont give me what i asked tell me to change and leave abantecart
i will find another web platform what will work ok ?

Offline kounamouta

  • Newbie
  • *
  • Posts: 8
  • Karma: +0/-1
    • View Profile
Re: i cant find banners
« Reply #11 on: January 25, 2025, 03:40:58 AM »
i dont like the ugly web pages of AbanteCart and yours with this code is so ugly that a few customers
will buy. i want nice pages that everything looks good and read good anyone can help me please?

 

Powered by SMFPacks Social Login Mod