• Hi all,

    Hope somebody can help me with this. Today I noticed that a site a made for a client was not very goodlooking anymore. I managed to redo a lot but there are some problems I cannot solve.
    Breadcrumb is showing on the frontpage, and breadcrums suddenly has the word “browse:” in front of the actual path.
    I am using the free Oxygen theme as a base and created a child theme. Can I solve this in CSS or do I have to make adjustment to PHP files?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you post a link to the website? Do you know what might have happened to their website?

    Thread Starter macnique

    (@macnique)

    http://Www.judithbolder.nl is the website. And no I don’t know what happened to it. For example all of the links were in blue and fonts changed too.

    Did your client recently update the theme?

    I see you’re already using a child theme, which is a good thing. You could hide the “Browse:” before the breadcrumbs and hide the breadcrumbs on the home page by putting this in your child theme’s stylesheet:

    .breadcrumb-trail .trail-browse {
    	display: none;
    }
    
    .home .breadcrumbs {
    	display: none;
    }

    Something else I noticed is that your @media query (@media only screen and (max-width: 767px)) on line 1432 of your child theme’s stylesheet is missing the ending bracket. You should probably put the missing ending bracket at the end of your child theme’s stylesheet and then paste the code I posted.

    Thread Starter macnique

    (@macnique)

    YES! it worked. I am very greatfull for your help.

    My client cannot update the theme herself so no that is not what happened. It remains a mystery to me.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Oxygen theme breadcrumbs’ is closed to new replies.