Customizing SMF > Tips and Tricks

[SMF Trick] Displaying a Statically Positioned Nav Bar

<< < (2/3) > >>

Anthony`:

--- Quote from: [TheDj] on May 22, 2011, 02:45:16 AM ---Nice trick Anthony :) Any plans for packaging it to a mod?

--- End quote ---

I did earlier, but if you want to package it as a mod go ahead. :)

6Scylla:
Does anyone know how to move the links to the right? Instead of the Left?

The Craw:
Very nice. I imagine this will come in handy for quite a few people. :D One suggestion though. If it were me, I'd have used margin instead of padding in the #wrapper rules. Not that it particularly matters.


--- Code: ---margin: 75px auto 0 auto;

--- End code ---


--- Quote from: 6Scylla on June 07, 2012, 09:34:05 AM ---Does anyone know how to move the links to the right? Instead of the Left?

--- End quote ---

Yes, you can float the list items to the right instead of the left by finding this code:


--- Code: ---.dropmenu li
{
float: left;

--- End code ---

And replacing it with this:

--- Code: ---.dropmenu li
{
float: right;

--- End code ---

6Scylla:
THANKS! <3

The Craw:
You're quite welcome. :)

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version