Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1320986

    Hi!
    I would like to ask you 2 questions, please:

    1.- In https://bcndisseny.cat/seguretat/
    The special heading “La seguretat del teu lloc web i correu és la nostra prioritat” is not rendering fine -it does in chrome-.
    · I can’t see the background color in the next FAQS area and can’t read “FAQS” on the left column because it’s in white over a white background.
    I compare this page with the rest and don’t find errors…

    2.- I want to show in the link menu area on header, the item selected in color #006cac and font-size:400. I tried by aditional css in personalization:
    At the moment I have:
    .avia-menu-text {
    font-family: lato,helveticaneue,helvetica neue,helvetica-neue,Helvetica,Arial,sans-serif;
    font-weight:300;
    font-size:20px;
    }
    And I would like to add:
    .avia-menu-text a:active {
    font-weight:400;
    color:#006cac;
    }
    It seems to be it don’t accept pseudo-classes…
    I tried by the Enfold theme options, without exit.

    Is it possible to get the item menu active in diferent color?

    Thanks in advance.
    Joan

    #1321113

    Hi,
    About the first question:
    · when I’m login in wordpress, with the top-black-bar-menu, and go to bcndisseny.cat/seguretat I don’t see the right render (firefox, chrome, edge)
    · when I’m loged out in wordpress, and go to bcndisseny.cat/seguretat I see the right render (firefox, chrome, edge).
    So the problem is not so hard, while the public users can load correctly this page. If you don’t know what’s happens, let it be, it’s not so important.
    About the second question, it is interesting for me, please.
    Thanks in advance & have a good health!
    Joan

    #1321532

    Hi,
    Thank you for your patience and for the login, I checked your bcndisseny.cat/seguretat page logged in and logged out on Chrome, Firefox, Edge in Windows 10, and in each case I can see the special heading “La seguretat del teu lloc web i correu és la nostra prioritat” and I can read “FAQS” on the left column, please see the screenshot in the Private Content area.
    Perhaps I misunderstood your issue, can you provide a screenshot of the error you see so I can try to match it?
    As for your second question, your :active pseudo-class css is flawed, the class is inside the link so it would be like this:

    a .avia-menu-text:active {
    font-weight:400;
    color:#006cac;
    }

    but I believe that you misunderstand what it does and what you really want is the menu link text to be blue when you are on the page, which the :active pseudo-class will not do.
    The theme adds the class .current-menu-item to achieve this, so please try this css:

    #header .av-main-nav .current-menu-item > a > .avia-menu-text {
    font-weight:400;
    color:#006cac;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

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