@Vamsi-Krishna what you see there are links to other sitemap files. They are essentially imported when the main sitemap is parsed by Google et al.
Any way to center the url embedded image ?
-
Now that we can embed image by url (thanks for that plugin) is it possible to center it as well somehow ?
-
@meetdilip said:
Now that we can embed image by url (thanks for that plugin) is it possible to center it as well somehow ?
You can use css to center images using
margin-left:auto;
andmargin-right:auto;
-
Thanks @a_5mith . But will it affect text as well ? I mean if I need put a list
-
ltem 1
-
Item 2
-
Item 3
Won' t that too get centered ?
-
-
you need to bind it to the images like by tag-name:
img { margin-left: auto; margin-right: auto; }