Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1189291

    Hi!

    I was wondering how can I change the row height of Fullscreen slider Header? Normally the 2 rows are a bit too far away from each other for my liking.

    Thanks in advance! :)

    #1189361

    Hey Cloaker,

    I’m not sure I understand your question, could you post a link to where we can see the element in question and try to explain a bit further please? If you have a screenshot or mockup highlighting your intentions then that would help as well.

    Best regards,
    Rikard

    #1189394
    This reply has been marked as private.
    #1189583

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .slideshow_align_caption h2 {
        line-height: 60px;
    }

    Best regards,
    Rikard

    #1192371

    Thanks! Then I’d like to know if it is possible to lower the whole box containing the caption in the centered version.

    In the full screen mode the text is centered to the middle of the screen, but when measuring from the menu, it’s not vertically in the middle.
    See the photo. The caption is indeed in the middle of the screen, but how could I lower it so that it would be in the middle when measuring from the menu to the ent of the page?

    Thanks :)

    #1193265

    Hi Cloaker,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width:1100px){
        .slideshow_caption {
            padding-top: 70px;
        }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1193488

    Thank you so much! :)

    If I want the effect to happen only in the front/home page of my site, was it “.home” i have to put to the beginning of the code or was it something else?

    Thank you again! You can close the thread after the last answer! :)

    #1193630

    Hi Cloaker,

    Yeah, you can add .home like this:

    
    @media only screen and (min-width:1100px){
        .home .slideshow_caption {
            padding-top: 70px;
        }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.