Remove the box around the header
-
Is there CSS available to remove the drop shadow or the box around the header logo on the P2 blog? I have tried a couple of different things with no success.
TIA
The blog I need help with is: (visible only to logged in users)
-
actually change that to remove the box around all media that I insert in the P2 blog. What an annoying design “feature” JMO
TIA
-
Hi, this takes care of the header shadow.
#header, #header .sleeve { box-shadow: none !important; }I’ve checked a few posts and I see a narrow border on images inserted into posts, such as here, http://forums.afwhs.org/2014/02/24/has-anyone-had-success-fitting-bates-saddles-to/ , but no box shadow on the images themselves. Paragraphs in P2 do have a box shadow, are you talking about the box shadow around paragraphs?
To remove the narrow border on images, you can use the following CSS.
#main p img {
border: none;
}` -
Thanks for the header shadow – worked a charm.
This link shows the borders around the media, there is a picture with a border and a video with a border.
https://afwhsforum.wordpress.com/wp-admin/customize.php?return=%2Fwp-admin%2Fwidgets.php
The text in these posts also has a border around it.
-
Hi, on the link you provided I’m not seeing a border or shadow around the image itself. Are you talking about the image around the content area? If so, the following will remove the box shadow from the content area and footer.
#wrapper, #footer { box-shadow: none; }And this will remove the box shadows from the paragraphs and such.
.category-link .postcontent p, .format-link .postcontent p { box-shadow: none; } -
-
- The topic ‘Remove the box around the header’ is closed to new replies.