Okay
  Public Ticket #2701313
multiple image insert
Closed

Comments

  •  1
    sidneyanand started the conversation

    Hello

    Is it possible to insert a series of images into a portfolio category in one go or does each image need to be inserted as a separate portfolio item?

    Also, how can the margin between images (list view) be reduced, css modification I guess?

    Thanks

    Sidney

  •  291
    Paul replied

    Hello Sidney!

    Regarding your questions:

    1. You would need to insert images and content into a separate portfolio item. The theme will first display the items and then their content.

    2. Yes, please try using this custom CSS to reduce the margin:

    .portfolio-item {
        margin-bottom: 2%;
    }
    

    Regards,
    Paul

  •  1
    sidneyanand replied

    Thanks Paul.

    Another question:

    my 3 word site title is broken up into 2 lines by the theme, is there a code to reduce the space between the lines?

    Thanks in advance

    Sidney

  •  291
    Paul replied

    Could you please send me your site URL? I will help you check the CSS code on the page.

  •   sidneyanand replied privately
  •  291
    Paul replied

    Thanks, Sidney.

    Please use this custom CSS to adjust the font-size and line spacing of the site title area:

    .site-title-heading, 
    .site-title, 
    .logo-tagline-wrapper 
    .logo-wrapper {
        font-size: 16px;
        line-height: 1.2;
    }
    .logo-tagline-wrapper {
        padding-bottom: 10%;
    }
    

    I hope it helps!