In case you want to embed directly itunesĀ App StoreĀ icons in wordpress you can get rounded edges with a short CSS tag. Yep, it makes a difference: All you need to do is to go to advanced settings on the “edit image” window and past the following css tags into “Styles”.
1 |
border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; |
In addition you can underline the icons with a shadow by adding following tag:
1 |
-webkit-box-shadow: 0 0 4px black; |
I am not a expert when it comes to CSS styles but this method works for me. if you know something more convenient please let me know!
Continue reading »