XenForo Floating banner area on the right and left

CR LEAKS

Administrators
Joined
Mar 25, 2022
Messages
1,485
Credits
28,051
There are friends who cannot be asked, even if they are simple, so I hope that it will be useful for you to include the mobile systems with more detailed css code.

Setup; Break and find the template named PAGE_CONTAINER in your theme <div class = "p-body">
Add on it immediately::::



Code:
 <!--[XGT]- Sabit banner alanı-->
    <div class="xgtSolSabitBanner">
        <a href="url">
            <img src="https://img.webme.com/pic/i/isacotur/160x600banner_rozet.jpg" alt="Banner alanı" width="" height="">
        </a>
    </div>

    <div class="xgtSagSabitBanner">
        <a href="url">
            <img src="https://img.webme.com/pic/i/isacotur/160x600banner_rozet.jpg" alt="Banner alanı" width="" height="">
        </a>
    </div>
    <!--[XGT]- Sabit banner alanı-->
Open the template named extra.less in the same theme and add it to the top;
CSS:
xgtSolSabitBanner
{
    position: fixed;
    z-index: 999;
    left: 0;
    top: 150px;//-- Banner ust boslugu opsiyonel olarak kullanılabilir.
    margin-left: 20px; //-- Banner sag yan boslugu opsiyonel olarak kullanılabilir.      
}

.xgtSagSabitBanner
{
    position: fixed;
    z-index: 999;
    right: 0;
    top: 150px; //--Banner ust boslugu opsiyonel olarak kullanılabilir.
    margin-right: 20px; //-- Banner sag yan boslugu opsiyonel olarak kullanılabilir.
}
 
Back
Top Bottom