Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #363448

    Hello,

    Can you please tell me how to adjust the height of the breadcrumb container? I have also added a color section to the home page to match the breadcrumb container on the inner pages. I would like to reduce the size of this as well so they are both the same. Appreciate the help.

    #363501

    Hey chantalinkdesign!

    Thank you for using our theme.

    To reduce the title and breadcrumb:

    Reduce the values for padding and you can use negative values for the margin. You can also set min-height to a value like 35px.

    
    #top .title_container .container {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    Put this in custom.css or Enfold->Styles->QuickCSS field.

    To adjust the color section use the following and adjust the values:

    
    .home .container .entry-content-wrapper .custom-color-heading {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    Cheers!
    Günter

    #363747

    Thanks. The breadcrumb is now displaying perfectly. A few more questions:

    1. I added all of the above code, but the color section on the home page is unfortunately not working. I would like it to match the breadcrumb.
    2. I really like the new small breadcrumb height, however when I view on a mobile device the breadcrumb links fall out of the breadcrumb container. Is there a way to have the Breadcrumb Title font hidden (E.g “Rhinoplasty”) when viewing on mobiles? So then it would just be the breadcrumb trail itself, fitting nicely on with the brown background?

    Thanks.

    #363749
    This reply has been marked as private.
    #363871

    UPDATE: I have decided to remove the color section on the home page, so please disregard #1. Would still please like assistance with #2.

    :–)

    #364031

    Hi!

    Thank you for coming back.

    Use the following CSS and put after the code above:

    
    @media only screen and (max-width: 767px) {
           .title_container .main-title {
                      visibility: hidden !important;
           }
    }
    

    You can replace the width also with 989 for portrait mobile or 480.

    Regards,
    Günter

    #364366

    Thank you!

    #364565

    Hi!

    Glad I could help you.
    Enjoy the theme.

    Regards,
    Günter

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Reduce height of breadcrumb container’ is closed to new replies.