Greetings.
I am new to WordPress and am trying to upload multiple pictures to a page. each picture will be linked to a url.
I have been uploading the pictures one by one. My problem is that I am unable to place/manage the pictures on the page. I have been playing around with the "left", "middle", "right", and "none" settings but that isn't working well enough. Is there some instruction available? Or, is there a plugin needed to better manage ?
Thanks
well...as a start, it can be theme related. Some older themes do not have the proper classes for handling images.
stuff similar to this in style.css
img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
.alignleft {
float:left;
padding:2px 0 0 10px;
}
.alignright {
float:right;
padding:2px 10px 0 5px;
}
.wp-caption.alignleft {
float:left;
margin-left:0;
margin-right:5px;
}
.wp-caption.aligncenter {
margin-left:auto;
margin-right:auto;
}
.wp-caption.alignright {
float:right;
margin-left:5px;
margin-right:0;
}