Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1038201

    So I tried the following code:

    .avia-caption-title {
      font-size: 22px;
      background-color: #00ff00;
      width: 200px;
    }
    .avia-caption-content {
      font-size: 12px;
      background-color: #00ff00;
      width: 500px;
    }

    so far so not working, the problem is that the caption content is moved way to much, I Know width needs to be edited.

    so I tried this:

    /* Title*/
    .caption_framed .slideshow_caption .avia-caption-title {
    background:red !important;
    }
    
    /*Vollbildslider text that is marked with <mark>....</mark> */
    mark {
        background-color: green !important;
        color: #ffffff;
    }

    And still didn’t get a result

    #1038826

    Hey lorenzdeutsch,

    I think this is your problem:

     width: 500px;

    What exactly are you trying to achieve with that?

    Best regards,
    Rikard

    #1066968

    Hello Rikard,

    i don’t know if i have the same issue but i can tell you what i want to achieve with the change of the width..
    When increasing the text size of the slider caption it makes a wordwrap if the size is too big.
    I want to stretch the title-box so the text is only appearing in one line.

    I was able to change the behaviour through the dev tools but probably target the wrong class-name when changing it in the quick css.

    .avia-caption-title  {
    width: 175%;
    }

    Right now

    Should be

    Thanks for helping.
    Dennis

    • This reply was modified 5 years, 10 months ago by deeennis90.
    #1066972

    Solved it.

    .slideshow_caption {
    	width: 175% !important;
        
    }

    WP Cache didn’t clear the chrome cache fully…

    #1067337

    Hi deeennis90,

    Great, I’m glad you got it working and thanks for sharing your solution.

    Best regards,
    Rikard

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