Post by Izy Coder on Mar 3, 2015 20:26:39 GMT 10
I want to make a nav bar in bottom and make it fix (not move with page) I want a css code, idk much about html...
Check Out My Project At VSlang InternetTM. More Project : - Poroxnoss Text Editor 2 - Added soon...
- TAP 2D Game Maker - Coming really soon...
- Easy Desktop - Discontinue..
|
|
Post by Imformas on Mar 3, 2015 21:25:45 GMT 10
i think you should learn more about html/css before trying the hard stuff.
Programming language'sCSharpC++CObjective-CVBProject'sSharpMediaSharpEditYoutifygithub.com/Stephen-Fox-0
|
|
Post by Nathan Lecompte on Mar 4, 2015 15:23:22 GMT 10
Hey Izy Coder , In your CSS you'll have to set the position of your Div to fixed like this: #mydiv { position:fixed;} And to put it at the bottom simply set bottom to 0px like this: #mydiv { position:fixed; bottom:0px;} And if you want it to stretch across the bottom then simply set the width to 100% (but make sure to add a height too) like this: #mydiv { position:fixed; bottom:0px; width:100%; height:120px;} Hope this helps! PS: Imformas looool, not very hard Also this is what the forum's for
|
|
Post by Imformas on Mar 4, 2015 23:05:25 GMT 10
Well it pretty much is for a bigginner @nathan, if hes wants it with colours, derp
Programming language'sCSharpC++CObjective-CVBProject'sSharpMediaSharpEditYoutifygithub.com/Stephen-Fox-0
|
|