1.How to set the width of photo collage box to 500px width?
A Photonic gallery will take up 100% of the width of its container, so if your container is 500px wide, Photonic will fill it out fully. If you are still interested in forcing it to be 500px wide, you can do so with CSS, but given that your page is a lot wider, it will not look nice. You can force it to be 500px with this in Appearance → Customize → Additional CSS:
.photonic-flickr-stream { max-width: 500px; }
2.How to change the grip of photo to non circle rounded corner?
Didn’t understand your question. Are you saying you want to make the corners of your photos right-angles, not rounded? Photonic creates right-angles – your theme is causing the issue here by changing it to rounded corners. You can override it with custom CSS:
.photonic-flickr-stream img { border-radius: 0 !important; }
@sayontan
I would like to say thank you @sayontan and all of your information is helpful and work. Its looks pretty good and what exactly I expected to present on my blog.
>>>
http://block09.net/?p=178
But one more thing is how to put the box align to center of the web.
I had try put css code position:center into script, but fail.
Can you teach me how to do that @sayontan
Brgds. Ray
-
This reply was modified 6 years, 10 months ago by
block09.
@sayontan
O… I fix it…just insert some simple css.
.photonic-flickr-stream { max-width: 500px;
display: block;
margin-left: auto;
margin-right: auto;
}
.photonic-flickr-stream { max-width: 500px;
display: block;
margin-left: auto;
margin-right: auto;
}