Need guidance
-
Hi,
I have an issue I don’t know will be the best way to solve.
I have a large word.docx, a table carefully put together and needs to
display in this exact way.
I have converted to jpeg, but the css on the site is customized to
have a border around images. This particular “image” – if posted like an image, should not have a border.
I’m afraid that if I upload to google docx or similar, the outcome code
will alter the table.
So; maybe a snippet to fill in to 1 page (at a time)?(Trying my luck on a black day for France and Europe)
regards,
NinaThe blog I need help with is: (visible only to logged in users)
-
I forgot; the css for images is also customized to “pop out”, this would also be good to have not happen on this particular page.
-
I think I found a way around it with png file and adjusting the
default customization. :) -
-
Hi – thanks for chiming in.
Well, I’m working on it –
pre-published: http://workcollections.com/oversikt-ikt-plan-ressurser/:)
-
The red border is actually a background color on the images, and then there is a box shadow also. To get rid of both, add the following CSS
.default-wrapper img, .default-wrapper div.wp-caption { box-shadow: none; background-color: rgba(0, 0, 0, 0); } -
Hi!
yes….I know. I like to have it as is, as default, but be able to not have it displayed on certain pages.
(I just followed one of your older css-answers to have title not displayed on certain pages!)regards
-
Hi Nina
To remove the red border/background and box shadow on this page only, the following should work for you.
.page-id-819 .default-wrapper img, .default-wrapper div.wp-caption { box-shadow: none; background-color: rgba(0, 0, 0, 0); }
- The topic ‘Need guidance’ is closed to new replies.