Jump to content

Recommended Posts

Posted

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.

  • 2 months later...
Posted

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>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...