Can I change 'image detail' default settings for photo uploads?
-
Is there a way to change the default ‘image details’ settings? I want a center placement and size 4 black border around every picture I upload. Currently it is labor intensive to have to select for each photo. The blog I need help with is livingsanibel.org Thanks for any help!
The blog I need help with is: (visible only to logged in users)
-
Hi there, you can add the following to your custom CSS which will put a 4px border on all images in the content area.
#content img { border: 4px solid #000000; }The above of course will also put the border on the small thumbnails that you have in posts like your SW Florida Food Forest post.
If you want to only put the borders on center-aligned images, you can use the following instead.
#content .aligncenter img, #content img.aligncenter { border: 4px solid #c000000; } -
Thank you so much. I haven’t used custom CSS yet. Can you direct me to a tutorial on how to do this? I sure would appreciate it.
-
To use the code above, Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the custom CSS I provided above.
Here are a few of our resources on CSS and CSS editing and there are some additional help resources in them as well.
-
-
- The topic ‘Can I change 'image detail' default settings for photo uploads?’ is closed to new replies.