Title: CSS Code
Last modified: September 1, 2016

---

# CSS Code

 *  Resolved [tiger2deuce](https://wordpress.org/support/users/tiger2deuce/)
 * (@tiger2deuce)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/)
 * Hey Tobias,
 * I am working on a table trying to develop a bracket and I was wondering if you
   could help me get it into shape. The link is [http://www.d2softball.com/ncaa](http://www.d2softball.com/ncaa).
   I have tried multiple variations of CSS code to get it how I would like it, but
   just can’t seem to find the right combination. I would like to get the columns
   to be the same width and the rows to be the same height. I would also like the
   images and text to be centered. And lastly, is there a way to remove the “gridlines?”
   The code I currently have is as follows:
 * .tablepress-id-NCAA-01 td {
    font-family: Calibri; font-size: 8px; color: #000000;
   width: 30%; text-align: center !important; vertical-align: middle; }
 * If you could help me out, I would greatly appreciate it!
 * Thank you,
    Kris
 * [https://wordpress.org/plugins/tablepress/](https://wordpress.org/plugins/tablepress/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/#post-7509862)
 * Hi,
 * thanks for your question, and sorry for the trouble.
 * This “Custom CSS” could help:
 *     ```
       #content .tablepress-id-NCAA-01 th,
       #content .tablepress-id-NCAA-01 td {
         font-family: Calibri;
         font-size: 8px;
         color: #000000;
         width: auto;
         text-align: center !important;
         vertical-align: middle;
         border: none;
       }
       #content .tablepress-id-NCAA-01 img {
         display: inline;
       }
       ```
   
 * Regards,
    Tobias
 *  Thread Starter [tiger2deuce](https://wordpress.org/support/users/tiger2deuce/)
 * (@tiger2deuce)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/#post-7509921)
 * As always, your suggestion works like a charm. Thank you so much!
 *  Thread Starter [tiger2deuce](https://wordpress.org/support/users/tiger2deuce/)
 * (@tiger2deuce)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/#post-7509980)
 * Now that I removed the borders from the table, is it possible to add box borders
   around the teams?
 * I was reading back from a few years ago, and I think that it was noted that entire
   cells could not be linked. Is this still the case or could I insert a link and
   be able to click on the cell and have it open up to another page? For example,
   on this bracket, you can click anywhere in the cells to open the link to another
   bracket … [http://www.ncaa.com/interactive-bracket/softball/d1/2016](http://www.ncaa.com/interactive-bracket/softball/d1/2016).
 * Thanks again!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/#post-7509995)
 * Hi,
 * you’d have to add borders on a per-cell basis here, which will be very cumbersome,
   e.g. with things like
 *     ```
       .tablepress-id-123 .row-3 .column-2 {
         border-left: 1px solid #000000;
         border-top: 1px solid #000000;
       }
       ```
   
 * Having entire cells be a link is still not possible. That simply is a limitation
   of how tables on the web work.
 * The bracket on the NCAA website does not use an HTML table, but other (more modern)
   HTML elements, which make the entire process of styling and user interface much
   easier.
 * Regards,
    Tobias

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘CSS Code’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/css-code-9/#post-7509995)
 * Status: resolved