bunnyhat55 Posted January 5, 2009 Share Posted January 5, 2009 I'm not sure where I put the codes that the guild layout tutorial gave me. <style /> SELECTOR { ATTRIBUTE: PROPERTY; } </style /> Do I put all those different code bits in between the { and } brackets with the ATTRIBUTE: PROPERTY; text? Like this: <style /> SELECTOR { ATTRIBUTE: PROPERTY; #footer, .sidebar, .user, #nst { display: none; } } </style /> Or do I make it like this: <style /> SELECTOR { ATTRIBUTE: PROPERTY; } #footer, .sidebar, .user, #nst { display: none; } </style /> Thanks in advance. Quote Link to comment Share on other sites More sharing options...
Temiko Posted April 1, 2009 Share Posted April 1, 2009 Everything goes between the style tags <style> </style> The selecor { attribute: property; } is just what they stand for, i.e. footer is the selector, display is the attribute and none is the property. So if your case, just the below should be fine. <style> #footer, .sidebar, .user, #nst { display: none; } </style> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.