Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #379758

    Hi,

    You all helped me get the arrow go into the footer on my homepage (link in private below). It looks great. How do I accomplish this on the About, Blog and Contact pages?

    This was the css for the homepage:

    .home div#after_section_3 {
    display: none;
    }

    Thanks!

    #379760

    Hi!

    Try with this code instead:

    .avia-section.avia-builder-el-last {
        display: none;
    }

    Cheers!
    Josue

    #379836
    This reply has been marked as private.
    #379845

    Hi!

    Use this instead:

    .page-id-368 .avia-section.avia-builder-el-last, .page-id-368 #after_section_1 {
        display: none;
    }

    Regards,
    Josue

    #403141
    This reply has been marked as private.
    #403169

    Hey Dan!

    There is no section with bottom arrow in that page, try to keep the same layout structure across all pages.

    Cheers!
    Josue

    #403445

    Ah, got it. How do I add it to the blog posts?

    #403449

    Just two questions:

    1) adding that arrow on the blog,
    2) making “Practice” smaller on the “Practice Areas” page when mobile so it doesn’t go into the picture.

    #403696

    Hey!

    I think it would be best to just add the arrow automatically to the footer, try using this code for all Pages (remove the other ones and their sections):

    #footer:before {
        content: "";
        position: absolute;
        height: 30px;
        width: 30px;
        display: block;
        background: white;
        left: 50%;
        top: -20px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    Regarding “Practice”, what Page are you referring to?

    Cheers!
    Josue

    #403711
    This reply has been marked as private.
    #403723

    Try with this:

    @media only screen and (max-width: 767px) {
        #av_section_1 .av-special-heading-tag {
            font-size: 24px !important;
        }
    }

    The code i provided will put a white arrow on every page, isn’t that what you want?

    Regards,
    Josue

    #403736

    Yikes, that code caused all kinds of issues (changed everything form wide-screen to not widescreen on desktop browsers).

    No, the arrow is different colors on different pages. For example, on the practice page it’s a very light grey.

    Thanks for your help .

    #403739

    Oh sorry, I was missing a “}” but the code didn’t do anything for the mobile version of the Practice page.

    #403741

    I see, in that case change the code to only affect blog posts:

    .single-post #footer:before {
        content: "";
        position: absolute;
        height: 50px;
        width: 50px;
        display: block;
        background: white;
        left: 50%;
        top: -25px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    Regarding the Practice title, there is a extra unnecessary “}” before the code – http://screencast.com/t/RY6JfxZg9

    #403746

    Hmm how do we make the arrow look smaller like it does on the other pages?

    #403749

    Adjust the height/width/top values:

    .single-post #footer:before {
        content: "";
        position: absolute;
        height: 35px;
        width: 35px;
        display: block;
        background: white;
        left: 50%;
        top: -22px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    Cheers!
    Josue

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