Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1496591

    Hello everyone,
    I’ve added a text block here.
    Link below:
    Can I adjust the height of this block?
    See screenshot.
    Link below:

    Best regards,
    Franz

    #1496596

    Hey schweg33,
    The height of the text block is based on the content inside of it. The paragraph tag in it will has top & bottom margin, and the section that it is in has padding from your custom css:

    .template-page.content.av-content-full.alpha.units {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    } 

    It would probably look nicer if you removed the background color.

    Best regards,
    Mike

    #1496600

    Hi Mike, thank you very much for your quick reply.
    I’ve now adjusted it so that the background is visible everywhere.
    Can the top margin still be removed?
    Link below:

    I set the text color to white,
    but it always displays in blue.

    Thanks,
    Best regards,
    Franz

    #1496601

    Hi,
    The top padding is set by your custom css:

    .template-page.content.av-content-full.alpha.units {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    } 

    Change 20px to zero if you want to remove it, but note this will affect all of your pages.
    While you have set the text color to white, your text is bold (strong) which has a blue color, either remove the strong tag, or add the color to the span style, like your font size.
    If you don’t know how to do that try this css:

    .avia_textblock p span[style*="color: #ffffff"] strong span[style*="font-size: 14pt"] {
        color: #ffffff;
    } 

    Best regards,
    Mike

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