Jump to content

Recommended Posts

Posted

I'm trying to add some coding to my Shop Description and it appears that display:none doesn't work there. How else am I supposed to hide what I don't want if that code doesn't work??

Basically, what I am going for is a simple shop layout and I want to hide the header, footer, sidebar and all the stuff so I can just have my shop items. But is display:none doesn't work, how can I do that?

Posted

You could try using

display: hidden;

and see if that works. I've never really tinkered with my shop code.

  • 2 weeks later...
Posted

Did you ever get this figured out? I'm not an expert, still learning, but I can take a look if you want to DM your shop code 🙂

Posted

I did not. I gave up

This post has been edited by a member of staff (Duma) because of a violation of the forum rules.
Please keep your posts at 7 words or above.
Per the reason above, please review our SPAM rules.

Posted

Try using overflow: hidden instead. Display is not allowed for some reason. I know there is a way to work around it. You might want to check out the shop coding tutorial on Sunny Neo.

  • 4 weeks later...
Posted

I figured it out if you're still interested;
here's my shop with the ,sidebar hidden

Here's the code I used;
 

}
.sidebar {
	width: 0px !important;
	height: 0px !important;
	border: 0px !important;
	padding: 0px !important;
	overflow: hidden !important;
	float: left;
}

I also have 

#ad-slug-wrapper, .brand-mamabar, #footer, hr, .user, #pushdown_banner_btf, #ban,

included in there, but the first one is the exact one I used to get rid of it 🙂

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...