Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi wph4,
    footer back to top?
    footer#footer .colophon a.back-to-top {color: red;}

    For these kind of small customizations take a look at the following ??
    https://doc.themesandco.com/customizr/browsers-dev-tools/

    About the menu, well you need more complex selectors :
    look here, go to the Menu Items section, that guide is still pretty valid. The only thing, if I’m not wrong, you have to “remove” is from those selectors is .notresp. Now customizr has just one menu which is always inside a .resp navbar. So when you have to differentiate detkop menu from mobile menu, you have to use media queries (@media (max-width:979px){ ... } => mobile)
    https://themesandco.com/customizr/customizr-navbar-guide/

    Hope this helps.

    Thread Starter wph4

    (@wph4)

    ok Thanks! @d4z_c0nf

    I will try it. I have tried the one for the back-to-top b but it didnot work (may be a matter of a point…) I hope I havae more luck this time ??

    For the menu I will read it and see how much from that I understand ??

    I will let you know…

    why matter of a point?
    you have to copy and paste that! ??

    Thread Starter wph4

    (@wph4)

    Sorry for the misunderstanding.

    What I meant is that before coming here (forum) and asking for help I had tried some code myself and I think I had tried this one but then it didnot work….

    Now I have copied and pasted and voila it works . Thanks!!!!

    For the second one I need some more time to learn it… ??

    Ahhh, ok I misunderstood then ??
    You need some practice on it.. yes.

    Thread Starter wph4

    (@wph4)

    Although I have not yet being able to change menu links color I will mark this thread as resolved.
    Because you have already given me the way to do so.

    Thanks again for your help!!!!

    Go here:
    https://themesandco.com/customizr/customizr-navbar-guide/
    look for the section Menu Items
    for example there’s this:
    .navbar.notresp .nav > li > a {
    ?
    use
    .navbar .nav > li > a {

    because recent customizr versions menu hasn’t the notresp class anymore.
    And so on, wherever you see .notresp remove it.
    wherever you see .resp remove it (now customizr navbar is always .resp)
    Since some versions ago we (common mortals, me and Dave – who made that guide) used .notresp to intercept the navbar for windows width < 980px
    ant .resp for the “mobile navbar”.

    Now to do that you have to use media queries:
    /* non mobile */ @media (min-width: 980px){ .navbar .nav > li > a {/*...*/}}
    /*mobile*/ @media (max-width: 979px){.navbar .nav > li > a {/*...*/} }

    The only problem here is that ie8 and below doesn’t support media queries. So basically ie8 will not see the code inside of them.

    Hope this helps a bit more ??

    Thread Starter wph4

    (@wph4)

    ok. Thanks again!!

    ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change link color…’ is closed to new replies.