+ Reply to Thread
Results 1 to 7 of 7

Thread: Footer Text & Menu Text

  1. #1
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028

    Footer Text & Menu Text

    I am upgrading > moving to the general wide template and in doing so I have a small problem where the footer text or the menu text is over riding in some how and I am unsure what part of the code to edit to separate them?

    The top I have a white background with black text, but as soon as I allocate the black text to the top, it overides the footer text and also turns that black ? and I have a black footer with what should be white text.

    How would I edit the code so that these two section do not override each other ?

    this seems to control both ?

    /* main menu */
    section.main-menu ul.menu > li > a,
    section.main-menu ul#main_menu_more > li > a,
    nav.footer-menu a {
    color: #626262;

    and this seems to control the hover on both

    section.main-menu ul > li > a:hover,
    nav.footer-menu a:hover,
    section.main-menu ul > li.active > a {
    color: #626262;
    font-weight: 400;





    bottom text needs to be white

    Attached Images Attached Images

  2. #2
    Hello Pete,

    You need to add the new css rule for links in footer, smth similar:

    Code:
    Only registered members can view the code.
    Thank you, Curtis.
    @Flynax Company

  3. #3
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    Just so I have this right, I post this / like this into my css file yes ?

    footer section.main-menu ul.menu > li > a,
    footer section.main-menu ul#main_menu_more > li > a,
    footer nav.footer-menu a {
    color: white;
    }
    Last edited by Pete Young; September 1, 2017 at 02:48 AM.

  4. #4
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    ok I added this and nothing worked / still the same with no text visible in the footer

    /* footer menu */
    footer section.main-menu ul.menu > a,
    footer section.main menu ul#main_menu_more > li > a,
    footer nav.footer-menu a {
    color: fdfdfd;
    }
    /* footer menu end */

  5. #5
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    is there something else I need to edit remove / add to make this work ?

  6. #6
    Hello Pete,

    Open file: style.css
    find class: nav.footer-menu a
    at line ~1244
    and add line:

    color:red;

    Save and check again.
    Viktor,
    Flynax technical department,
    Best wishes.

  7. #7
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    perfect thank you

+ Reply to Thread