How do you remove CSS code from a theme?
-
I am re-styling the Banana Smoothie theme. In the menu section w/in the CSS code, I would like to remove the “menu-end” image. This is the original CSS I’m trying to work with:
#menu:after {
content: url(“images/menu-end.png”);
This is the yellow sticky flip up at the end of the menu.Note: I have not yet purchased the CSS Upgrade yet so I can only preview it. First I want to make sure I can successfully customize this theme. Everything has gone well up until this point.
Can someone help me with this? Thanks!The blog I need help with is: (visible only to logged in users)
-
Just override that definition, something like this should do it:
#menu:after {content: "";} -
-
Well, I gave it a try, but it didn’t work for me. I’m not sure why this doesn’t work… Can anyone help me figure out how to get rid of the sticky note images on the Banana Smoothie Theme? Thank you!
-
Another thing to note is that I can’t even switch out the image here. I’ve done plenty of image switchouts with the ‘background-image’ property w/o a problem, but I can’t seem to do it with this one. I appreciate any help. Thanks.
-
The background image has to be removed from a couple places. I put this into the CSS edit window and all the background, and the menu end things goes away:
body { background-image:none; } h1#header { background-image:none; } #content { background-image:none; } #menu:after { display:none; } -
-
-
OH wait – I don’t want to remove the bg to everything else because I switched out those images to customize the theme… I will try the last thing though and see if that works. Is there a way that I can keep the custom images I put everywhere else and remove those yellow tabs? – Thanks!
-
I tried the “display:none:” attribute only but that didn’t seem to help either :(. I am so close to getting this the way I want it…
-
-
With this in the CSS edit window on my test blog, the recipe is gone from the bottom of the sidebar:
#menu:after { display:none; } -
Great! That seemed to work. I just need to get rid of that Banana Smoothie recipe image now. It’s possible I will be able to figure that out, if not… I’LL BE BACK. Thanks again!!!
-
-
-
-
-
- The topic ‘How do you remove CSS code from a theme?’ is closed to new replies.