Tagged: 

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1035392

    Hi guys!

    How do I make the background color for breadcrumbs transparent?

    I haven’t added the breadcrumbs yet because the background color of the breadcrumbs is showing up as a dark blue background

    #1035930

    Hey Courtney,

    Where can we see the breadcrumbs?

    Best regards,
    Rikard

    #1035960

    Hi @Courtney,

    you can play with CSS code same eg…

     /* Breadcrumbs style*/
    
    /* Title container background color */
    .title_container { background-color: red!important; }
    
    /* Title color */
    #top .alternate_color.title_container .main-title a { color: white; }
    
    /* Breadcrumb link color */
    .breadcrumb-trail * { color: gold!important; }
    
    Breadcrumbs – remove the words you a

    Here a link for more tips: https://kriesi.at/documentation/enfold/breadcrumbs/

    #1036045

    I’d like the background color of the breadcrumbs to be transparent so the breadcrumbs look as subtle as possible.

    #1036051

    UPDATE: I added this code to CSS

    .title_container {
    background-color: transparent!important;
    border: none!important;
    }

    It made the breadcrumb background transparent which is great but on mobile the border of the breadcrumb is cutting into the actual words of the breadcrumb.

    How do I make sure the border doesn’t cut into the words of the breadcrumb on mobile? Thank you in advance!

    #1036317

    Hey @Courtney

    You can play whit @media queries eg below example

     /* Hide borders breadcrumbs on mobile*/
    @media only screen and (max-width:767px) {
    	.title_container .breadcrumb {
    		border-style: none !important;
    	}
    }

    Here more example https://www.w3schools.com/css/css3_mediaqueries_ex.asp

    #1036720

    Thanks, I tried this code in CSS:

    .title_container {
    background-color: transparent!important;
    border: none!important;
    }

    @media only screen and (max-width:767px) {
    .title_container .breadcrumb {
    border-style: none !important;
    }
    }

    The breadcrumbs are transparent but the border is still showing up on mobile…hmmmm… does the CSS code above look correct?

    #1036760

    Hi @Courtney

    I’ve tested on https://www.w3schools.com/css/css_border.asp whit editor online and this is a result.

    Whit Borders on normal screen
    Whit border

    No Borders on small screen
    No border!!!

    You can provide a link to see the code?

    #1036783

    Yes, you are correct :)
    Thanks a million, I refreshed cache on mobile and you are right, the border is now gone. Thank you :)

    #1036784

    One last Q:

    I’d like to change the word “Home” to something else. Where can I change that word in the Enfold theme?

    #1036871

    Hi Courtney,

    Go to WP Admin Panel > Apparence > Menu > and change the label Home to your preferred word eg. Welcome ;)

    #1037129

    The catch is I don’t have the “Home” option in the menu other than our logo…wondering where I can find the option to change the word “Home” if the only “home” link is the logo?

    #1037440

    Hi,

    Have you found the specific menu?

    Best regards,
    Basilis

    #1037781

    Hey @Courtney

    You can create the link in the Main Menu always in Administration > Apparence > Menu.
    Search for Custom Links and insert the link to your home page and edit the label to your preferred word.

    #1038390

    Hi BigBatT,

    Thanks for helping out, much appreciated :-)

    Best regards,
    Rikard

    #1039387

    Hi @Rikard,

    In my opinion the sense of community is this: to share one’s knowledge.
    Thanks to all of you ;)

    #1039808

    Hi BigBatT,

    I totally agree with you, thanks again for having that attitude :-)

    Best regards,
    Rikard

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