Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #992848

    John Ezra
    Member

    Hi there,

    Thanks for updating the thread and your feedback. There are lots of feature request and we can’t promise implementations or timelines to them. We have several things we are working on in our pipeline, but we do listen and take things into consideration especially when we see it will be beneficial to our users.

    We do make announcements via our blog and info on our updates are released on our changelog.

    To check the latest versions, please visit our Changelog

    #1019451

    BusinessExpress
    Participant

    I want the footer font to all be in black. I used the CSS provided and was able to get a change on the first two pages. But the remaining pages are all in gray. Why wouldn’t the one coding change all footer color to black. Thanks.

    #1019475

    Nico
    Moderator

    Hi There,

    Would you mind sharing us the URL where you want to change the font colors. Please share us also the customization you already added.

    Thanks.

    #1020679

    BusinessExpress
    Participant

    The site is not yet public.I meant the footer menu

    .x-colophon.bottom,
    .x-colophon.bottom .x-nav li a, /* footer menu */
    .x-colophon.bottom .x-colophon-content a { /* content links */
    color:black;
    }
    footer.x-colophon.top {
    background-color: black;
    }

    #1020729

    BusinessExpress
    Participant
    #1021001

    John Ezra
    Member

    Hi there,

    Thanks for updating the thread! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .x-colophon.bottom,
    .x-colophon.bottom .x-nav li a, /* footer menu */
    .x-colophon.bottom .x-colophon-content a { /* content links */
    color:black;
    }
    footer.x-colophon.top {
    background-color: black;
    }
    
    .x-social-global a {
        color: #000;
    }
    
    ul#menu-secondary-navigation-menu li:after {
        color: #000000;
    }

    Hope this helps – thanks!

    #1027263

    BusinessExpress
    Participant

    Some pages the font color footer changed, and other pages the font color is still gray and not black. How can I get all the footer navigation to have the black color.

    #1027565

    Lely
    Moderator

    Hi There,

    Upon checking your site:http://www.tiffanyceverett.com/, I can’t find above CSS from your Customizer or child theme’s style.css file. If you have added the suggested custom CSS above, please try to purge/delete cache. We might be seeing a cache content.

    #1027864

    BusinessExpress
    Participant

    Hello, I checked you were right its updated but every other page has the correct black font, those pages that do not have the footer black font are in gray.

    #1027985

    Joao
    Moderator

    Hi There,

    Thanks for writing in! Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post.

    Would you mind providing a more detailed information about what you want to achieve and o which pages you are facing the issue?

    Thanks

    Joao

    #1028272

    BusinessExpress
    Participant

    When I click on the top header and click on The Home page, family page, health page, travel page, video page, media page, AND parenting page the footer font displays in gray (I would like to be black)

    #1028450

    Joao
    Moderator

    Please add the following code yo Appereance / Customizer / Custom / CSS

    
    .x-colophon.top a {
      color: black;
    }
    
    .x-colophon.top a:hover {
      color: red;
    }
    
    

    You can adjust the colors black or red to colors like #000000 or any desired color.

    Hope that helps,

    Joao

    #1029405

    BusinessExpress
    Participant

    The color is not changing.

    #1029683

    Christopher
    Moderator

    Hi there,

    Please find following code :

    .x-colophon.bottom,
    .x-colophon.bottom .x-nav li a, /* footer menu */
    .x-colophon.bottom .x-colophon-content a { /* content links */
    color: 000000;
    }
    footer.x-colophon.top {
    background-color: 000000;
    }
    
    ul#menu-secondary-navigation-menu li:after {
        color: #000000;

    And update it to :

    .x-colophon.bottom,
    .x-colophon.bottom .x-nav li a, /* footer menu */
    .x-colophon.bottom .x-colophon-content a { /* content links */
    color: #000000;
    }
    footer.x-colophon.top {
    background-color: #000000;
    }
    
    ul#menu-secondary-navigation-menu li:after {
        color: #000000;
    }

    Hope it helps.

    #1029936

    BusinessExpress
    Participant

    Thank you so much for assisting me, I deleted the previous code and updated it to the current and its still not changing, please help.