Okay
  Public Ticket #2838284
CSS request/fix
Closed

Comments

  •  1
    ArturoQuatro started the conversation

    Hi there,

    Is it possible to force a return after the Dynamic Text Content so that the Ending Text Content (please see "with a custom demo" in the attached) always begins on its own line?

    Adding a return in the editor's Ending Text Content input field solves the need, but only for the initial preview of the page—upon any additional update, the return is omitted both from the preview and the field in the editor.

    Thanks for any advice/CSS you might be able to provide!

  •  8,847
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar-rotating-words-title .dynamic-words {
        display: block !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    ArturoQuatro replied

    Thanks, Tahir—is it possible to limit the forced return to a single element of the three? Please see below...

    Default state:
    [Beginning Text Content] [Dynamic Text Content] [Ending Text Content]

    Provided/current state:
    [Beginning Text Content] forced return
    [Dynamic Text Content] forced return
    [Ending Text Content]

    Ideal state:
    [Beginning Text Content] [Dynamic Text Content] forced return
    [Ending Text Content]

    Thanks for your help!

  •  8,847
    Tahir replied

    Hey Again,

    Thanks for the additional information. You can get the desired outcome using the below CSS only.

    .nectar-rotating-words-title .ending-text {
        display: block !important;
    }

    Also, there are CSS classes attached to all 3 divs so you can adjust as per your liking :

    6044746823.pngClick on Image to View Larger


    Thanks



    ThemeNectar Support Team 

  •  1
    ArturoQuatro replied

    Success—thank you!