TheCripZone SMF Themes Site

All Things Public => SMF 2.1 RC2 => Archived 2.1.X Versions => 2.1 RC2 Themes => Topic started by: Skhilled on Jul 27, 19, 03:39:15 AM

Title: Sticky Top_Section!
Post by: Skhilled on Jul 27, 19, 03:39:15 AM
If you'd like the top-section to be stickied (make it follow you as you scroll down the page) all you need to do is this:

1.  In index.css:

Search for:
/*    Uncomment the code below to sticky the footer */

2.  Then change this:
/*    Uncomment the code below to sticky the footer */
/*    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 20; */


Replace with:
/*    Uncomment the code below to sticky the footer */
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 20;


This code will be added to all future themes. All you have to do is follow the above code changes to make it work for your chosen theme!  O0
Title: Re: Sticky Top_Section!
Post by: bigguy on Feb 26, 20, 06:18:39 PM
I like it. ;)
Title: Re: Sticky Top_Section!
Post by: Skhilled on Feb 27, 20, 08:59:45 AM
I forgot to mention that this can also work for the footer as well.