• Resolved walkerba2

    (@walkerba2)


    Similar to jmkt, I am using the footer bar instead of the footer widgets. I am trying to structure some things into this footer bar and would like to organize them using tables. But, when I have the table in the footer bar, a white border (probably 1px) appears. I would like to make that boarder go away (0px), but I’m not sure how to do it. I know I need to change the CSS code, but I’m not sure how to alter it without altering the format of all the tables. Can you point me in the right direction?

    Thanks for all the help that you give! It is much appreciated by everyone who uses this wonderful theme!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author ronangelo

    (@ronangelo)

    Try adding either of the code below on Frontier Options -> Custom CSS

    Transparent borders:

    #bottom-bar th, #bottom-bar td {
        border-color: rgba(0, 0, 0, 0);
    }

    Or, completely remove borders:

    #bottom-bar th, #bottom-bar td {
        border-style: none;
    }

    Thread Starter walkerba2

    (@walkerba2)

    Perfect, that worked! Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘tables in footer bar’ is closed to new replies.