Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #1017860

    Hi
    I have 2 issuses
    1. I would like to center the white box with content and the width of it should only be 75% instead of 100%. Is there a way to do that
    2 I have breadcrumbs activated on my site but it seems that they are hidden under the color section, how do I get them visible?
    I will share link in private content.

    Thank you

    #1017966

    I have solved the white box width. Now I only need the breadcrumbs :-)

    #1018125

    Hi,
    I took a look at your site, but it seems that the breadcrumbs are at the top of your pages and visible.
    Please see the screenshot in Private Content area.
    Please link to the page(s) where the breadcrumbs are not visible so we can assist.

    Best regards,
    Mike

    #1018177

    Hej
    Yes I found a way to show them thanks.
    Do you have an idea how I can style them, so they look like they normal do in the theme?

    #1018215

    Hi,

    Great, glad you found a solution. I’m not sure exactly what you are looking to change, could you try to explain a bit further or post a mockup of your intentions please?

    Best regards,
    Rikard

    #1018262

    Hi
    I would like to have the breadcrumbs below the navigationbar in the left side :-)

    #1018363

    Hi,
    Please see our documentation for the breadcrumbs

    Best regards,
    Mike

    #1018625

    Hi
    Thanks. It’s almost working now :-)
    Maybe you can help me with the next step. I would like to remove the background-color or make it transparent because I have an image as background. But it’s tricky, even if I set the background-color as transparent it becomes white but I want to be able to see the image.
    Thanks

    #1018657

    Hi,
    We will be happy to help, are you setting the header as transparent in the editor sidebar options?
    2018-10-07_090739
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #1018691
    This reply has been marked as private.
    #1018711

    Hi,
    The white bar is your title container, to remove please add this css:

    .title_container {display: none !important;}

    Best regards,
    Mike

    #1018874

    Hi again
    Thanks for the reply. The css also removes my breadcrumbs, it’s only the white bar above the menu, I would like to be transparent.

    #1019166

    Hi jakobl1976,

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #1019234
    This reply has been marked as private.
    #1019713

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    .html_header_transparency #top .avia-builder-el-0 {
        top: -74px !important; 
    }
    #main {
    background-color: #000 !important; 
    }

    It moves the slider up & changes the background black.

    Best regards,
    Mike

    #1019809

    Hi Mike
    Thanks, but as you wrote it moves up the slider and lives a black “border” under the slider. There must be a way to make the white “border” in the top transparent :-) ?
    Thanks

    #1019947

    Hi,
    I believe that instead of enabling the title bar on a transparent header by modifying the theme, we should add the breadcrumbs as a shortcode and add the shortcode in a code block at the bottom of the page.
    Then move the breadcrumbs under the menu with this javascript:

    jQuery(window).load(function(){
        jQuery( '.breadcrumb.breadcrumbs.avia-breadcrumbs' ).insertAfter( '.avia-menu.av-main-nav-wrap' );
        });
    

    and hide the code block and style the breadcrumbs with css such as this:

    .avia-breadcrumbs,.avia-breadcrumbs a {
    color: #fff !important;
    }
    #after_full_slider_1 {
    display: none !important;
    }

    I tested this on my localhost, and it seemed to get the results you are trying for:
    2018-10-10_080032
    (my example would still need a little more styling)
    Would it be ok for me to try this on your site?

    Best regards,
    Mike

    #1020219

    Hi Mike
    Thanks for your reply.
    I solved it with the following css:
    @media all and (min-width: 960px) {
    .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    position:absolute;
    left:50%;
    }
    }

    @media all and (min-width: 960px) {
    .title_container .breadcrumb {
    left:-410px !important;
    }
    .avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow, .avia-builder-el-0.av-cell-min-height-100 > .flex_cell {
    height:100vh !important;
    }
    }

    #1020545

    Hi,
    Great solution, thanks for sharing.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

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