[Support request] Problem with yoast breadcrumbs

Home Forums Support [Support request] Problem with yoast breadcrumbs

Home Forums Support Problem with yoast breadcrumbs

Viewing 6 posts - 31 through 36 (of 36 total)
  • Author
    Posts
  • #390412
    apartamento-para-tres

    If I delete that part it works but the dark gray how can I modify it?. That color is barely visible. http://apartamentoparatres.es/nuestras-creaciones/diseno-grafico/
    Now the css code is:

    .breadcrumbs {
    background-color: black;
    padding:10px;
    margin-top:0px;
    font-size: 0.6em;
    color: white;
    }
    .breadcrumbs a:hover {
    color: #fedb00;
    }
    body.home .breadcrumbs{
    display:none;
    }

    if I add this code

    .breadcrumbs a: {
    color: #cccccc;
    }

    don´t work and I don´t understand

    Thank you

    #390588
    Leo
    Staff
    Customer Support

    You can modify it by this CSS:

    .breadcrumbs a {
        color: #ffffff;
    }
    #391389
    apartamento-para-tres

    Nothing is changed. Still the same

    #391597
    Leo
    Staff
    Customer Support

    Hmm I’m not seeing the CSS being added? What’s your overall CSS right now?

    #391607
    apartamento-para-tres

    I left the code as it was.
    .breadcrumbs {
    background-color: black;
    padding:10px;
    margin-top:0px;
    font-size: 0.6em;
    color: white;
    }
    .breadcrumbs a:hover {
    color: #fedb00;
    }
    .breadcrumbs a: {
    color: #cccccc;
    }
    body.home .breadcrumbs{
    display:none;
    }

    I tried changing it with different colors and none works

    #391628
    Leo
    Staff
    Customer Support

    You have a syntax error. This:

    .breadcrumbs a: {
        color: #cccccc;
    }

    should be this:

    .breadcrumbs a {
        color: #cccccc;
    }
Viewing 6 posts - 31 through 36 (of 36 total)
  • You must be logged in to reply to this topic.