Viewing 15 posts - 1 through 15 (of 15 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

    #1496605

    Advanced Styling
    I’ve adjusted the text color now.
    Now the spacing isn’t working anymore?

    Code in costomizer is red
    see you print screen

    #1496606

    Hi,
    Typically code is red when there is an error, looks like you have / / above the css.

    Best regards,
    Mike

    #1496607

    I copied your code exactly
    and added it exactly as it was?
    Thanks

    #1496612

    Hi,
    You misunderstood, this is not my css, it is your css already on your site that you need to change:

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

    Change 20px to zero

    Best regards,
    Mike

    #1496615

    Thanks a lot, Mike.
    Now I understand.

    Here’s the mobile horizontal view:
    Link below:
    Screenshot below:
    Why is the burger menu red and too far to the right?

    Thanks,
    Best regards,
    Franz

    #1496618

    Hi,

    Thank you for the update.

    You can add this css code to pull the burger menu a bit to the left so it’s not touching the right edge of the header container.

    .responsive #top #header_main > .container .main_menu  .av-main-nav > li > a {
        min-width: 0;
        padding: 0 20px 0 20px;
    }

    Let us know the result.

    Best regards,
    Ismael

    #1496624

    Thank you very much, Ismael
    The placement is perfect
    But what about the color?
    Could you change it to white?

    Thanks
    Best regards
    Franz

    #1496648

    Hi,
    Try adding this css:

    @media only screen and (max-width: 890px) and (orientation: landscape) {
        .html_mobile_menu_tablet .header_color div .av-hamburger-inner, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::before, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::after {
            background-color: #fff;
        }
    } 

    Then clear your cache and check.

    Best regards,
    Mike

    #1496649

    Thanks
    I did that
    Nothing has changed yet
    It’s still red
    Best regards
    Franz

    #1496650

    Hi,
    Try this instead:

    @media only screen and (max-width: 890px) and (orientation: landscape) {
        #header.header_color div .av-hamburger-inner, #header.header_color div .av-hamburger-inner::before, #header.header_color div .av-hamburger-inner::after {
            background-color: #fff;
        }
    } 

    Best regards,
    Mike

    #1496651

    Super Mike
    Thank you very much
    It’s working great now

    You can close this ticket

    Best regards,
    Franz

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘adjust the height’ is closed to new replies.