• Resolved block09

    (@block09)


    To every professional..

    I have two problem.

    1.How to set the width of photo collage box to 500px width?

    2.How to change the grip of photo to non circle rounded corner?

    Brgds Ray

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Sayontan Sinha

    (@sayontan)

    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; }

    Thread Starter block09

    (@block09)

    @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.
    >>>
    https://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 5 years, 4 months ago by block09.
    Thread Starter block09

    (@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;
    }

    Thread Starter block09

    (@block09)

    .photonic-flickr-stream { max-width: 500px;

    display: block;
    margin-left: auto;
    margin-right: auto;

    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Setting of Width and Image corner’ is closed to new replies.