Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1405204

    Yes, however the issue on that page is that I’ve tried changing the different headers padding/spacing between the words and it seems to not be working . I’m not sure why. It has always worked before. Any ideas?

    This is what I’m referring too: https://snipboard.io/t6MDwz.jpg

    #1405306

    Hey simplycoding15,
    The special heading element has a bottom padding of 10px, and because it has a H1 tag a top margin of 20px is added.
    I’m not sure if you want to center the special heading:

    #top.page-id-38256 #av_section_1 .av-special-heading-h1 {
    	 text-align: center;
    }

    or if you want to use letter spacing:

    #top.page-id-38256 #av_section_1 .av-special-heading-h1 h1 {
        letter-spacing: 0.1em;
        text-align: center;
    }

    Hopefully this helps with your question.

    Best regards,
    Mike

    #1405416

    I deleted the 10px and the 20px and it still has a lot of space above the heading. Do you see all the blue space? I’m wondering if it has something to do with this setting in the ROW: https://snipboard.io/4kqoDC.jpg

    #1405457

    Hi,
    I guess I didn’t understand your question originally, do you want it to look like the blue section AGES 6+ / GRADES 2-5?
    Try this css:

    #top.page-id-38256 #av_section_1 h1.av-special-heading-tag {
        margin: 0 !important;
    }
    #top.page-id-38256 #av_section_1 .av-special-heading-h1 {
    	 text-align: center;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1405461

    Shouldn’t I be able to edit the height and padding right in the ALB within the element?

    #1405605

    Hi,
    The top margin is added by your custom css:

    h1{
    	margin-top: 20px !important;
    }

    Enfold_Support_1875.jpeg

    Best regards,
    Mike

    #1405612

    so you are stating that it is already in the custom CSS for some reason and thus not changing when I change the settings inside the element header correct?

    #1405614

    Hi,
    In the special heading element when you add a margin it is added to the element that wraps the H1 tag av-special-heading it doesn’t add or remove a margin from the H1 tag itself. Your custom margin for the H1 tag adds the margin to the H1 inside the special heading element.
    I hope this explains better.

    Best regards,
    Mike

    #1405616

    so do I pull the H1 tag out of that layer?

    #1405621

    Hi,
    I would recommend making your custom css more specific to the H1 element that you want to add the 20px top margin to:
    Enfold_Support_1875.jpeg
    Using this current rule will add a 20px top margin to all of your H1 tags.

    Best regards,
    Mike

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