Text on Gallery Page not wrapping

Discussion in 'Real Photography WordPress Theme' started by yeeblazerlover, Jul 3, 2013.

Thread Status:
Not open for further replies.
  1. yeeblazerlover

    yeeblazerlover New Member

    Joined:
    Sep 4, 2012
    Messages:
    4
    Likes Received:
    0
    Hi there! I wrote a little text with each gallery, but the text gets cut off. I cant find how to make it wrap!
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    ul.thumbnail p {
    margin-right: 100px;
    }
    @media only screen and (min-width: 768px) and (max-width: 959px) {
    ul.thumbnail p {
    margin-right: 90px;
    }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    ul.thumbnail p {
    margin-right: 6px;
    }
    .page-content .gallery ul.thumbnail {
    width: 430px;
    }
    }
    @media only screen and (max-width: 480px) {
    ul.thumbnail p {
    margin-right: 90px;
    }
    }
    
    This will solve your issue.
     
  3. yeeblazerlover

    yeeblazerlover New Member

    Joined:
    Sep 4, 2012
    Messages:
    4
    Likes Received:
    0
Thread Status:
Not open for further replies.

Share This Page