Okay
  Public Ticket #185181
Image boder - single page
Closed

Comments

  • S started the conversation
    How can I remove image borders from a single page? I like the border on some pages, but certain pages I would like no border.
  •  291
    Paul replied

    Hi,

    You can use custom CSS to remove the border on some pages. I would suggest to use "Developer Tools" on Chrome or "Firebug" on Firefox to help you inspect the CSS selector on the page then you will know which selector to apply.

    For example, on the portfolio single page, after inspecting and found the proper CSS selectors, you can use custom CSS like:

    #uxb-port-single-images-container .border {
        border: 0;
    }

    This will remove the border out of the portfolio's image slider area.

    Regards,
    Paul