Viewing 13 replies - 1 through 13 (of 13 total)
  • Hi,

    If you have GP Premium, you should be able to change the colors of the menu using the Colors module.
    https://docs.generatepress.com/article/colors-overview/

    Else, use these CSS:

    /* for the currently selected menu item */
    .main-navigation .main-nav ul li[class*="current-menu-"] > a {
        color: #7a8896;
        background-color: #ffffff;
    }
    
    /* for the menu item default state */
    .main-navigation .main-nav ul li > a {
        color: #7a8896;
        background-color: #ffffff;
    }
    
    /* for the menu item hover state */
    .main-navigation .main-nav ul li > a:hover {
        color: #7a8896;
        background-color: #ffffff;
    }

    As for the post list styling, I believe these are from Content Views – Post Grid & Filter for WordPress plugin. This is a third party plugin which is outside of our scope of support. It’s best to ask their support regarding this matter.

    Thread Starter luismojica30

    (@luismojica30)

    No me funcionó ??

    No me funcionó ??

    Can you tell what’s not working?

    Have you tried either the customizer way or the CSS?

    Note: for the CSS, you’ll have to change the values. Putting a code as is will turn your menu all white. ??

    Let us know.

    Thread Starter luismojica30

    (@luismojica30)

    Uso el personalizador CSS adicional

    El botón sigue en negro ??.
    https://www.packspro.website/wp-content/uploads/2020/12/20201229_220308-scaled.jpg

    Y también me gustaría que las esquinas fueran redondas, que encajen con el color blanco
    https://www.packspro.website/wp-content/uploads/2020/12/20201229_220416.jpg

    Can you temporarily disable your caching plugin? So I could check what you have so far.

    Thread Starter luismojica30

    (@luismojica30)

    Ya borre cache

    Theme Author Tom

    (@edge22)

    To change the toggle, do this:

    .mobile-menu-control-wrapper .menu-toggle, 
    .mobile-menu-control-wrapper .menu-toggle:hover, 
    .mobile-menu-control-wrapper .menu-toggle:focus {
        background: #fff;
        color: #000;
    }

    The corners already seem to be round?

    Let us know ??

    Thread Starter luismojica30

    (@luismojica30)

    El boton me quedo perfectamente en blanco ?…

    Pero quiero saber si me pueden arreglar las esquinas en este link lograran ver que al abrir el menu, hay una ventana rectangular atrás del menu en negro a ese rectángulo me gustaría, que tuviera esquinas redondeadas

    Leo

    (@leohsiang)

    I believe you’ve added this CSS which is causing the issue:

    .grid-container {
        background-color: #000;
    }

    Removing that should fix it.

    Thread Starter luismojica30

    (@luismojica30)

    If @leohsiang I have it active, if I delete the Code I have a blank header, then I can’t delete it

    Well if it can’t be fixed then I’ll leave it at that

    Thank you ?

    • This reply was modified 4 years, 2 months ago by luismojica30.
    Leo

    (@leohsiang)

    Change:

    .grid-container {
        background-color: #000;
    }

    to

    .inside-header {
        background-color: #000;
    }
    Thread Starter luismojica30

    (@luismojica30)

    Perfecto ?… Gracias

    Leo

    (@leohsiang)

    No problem ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Cambiar Color al Boton del Menu GP’ is closed to new replies.