Title: orbitrod's Replies | WordPress.org

---

# orbitrod

  [  ](https://wordpress.org/support/users/orbitrod/)

 *   [Profile](https://wordpress.org/support/users/orbitrod/)
 *   [Topics Started](https://wordpress.org/support/users/orbitrod/topics/)
 *   [Replies Created](https://wordpress.org/support/users/orbitrod/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/orbitrod/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/orbitrod/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/orbitrod/engagements/)
 *   [Favorites](https://wordpress.org/support/users/orbitrod/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Material Design for Contact Form 7] Material design outlined text fields](https://wordpress.org/support/topic/material-design-outlined-text-fields/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/material-design-outlined-text-fields/#post-10520340)
 * Thank you Angus for the quick reply.
 * I found these codepens that emulate the outline effect. I am going to try to 
   incorporate these examples into your plugin. If I am successful, I will let you
   know.
 * [https://codepen.io/amsheehan/pen/QMPBbj](https://codepen.io/amsheehan/pen/QMPBbj)
   
   [https://codepen.io/cubetastic/pen/bKGzro](https://codepen.io/cubetastic/pen/bKGzro)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Highlight Rows using Table Manipulation](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/#post-6672610)
 * Hi Tobias
 * I was able to figure it out.
 * I got rid of the first_column_th shortcode entirely.
 * I added this css to style the first column
 *     ```
       .itemspec .column-1 {color: #773D97;border-right: 1px solid #e0dede;font-family: Lato, Arial;line-height: 1.1em;font-weight: 400;width: 25%;max-width:200px}
       ```
   
 * I also added this style so that the column-1 css would not override row highlighting
   css.
 *     ```
       .row-highlight-spectitle td {background-color: #444;color: #FFF !important;font: bold 15px/1.1em Lato, Arial !important;padding: 5px 0 5px 10px;text-transform: uppercase;border-bottom: 1px solid #e0dede;border-top: none;}
       ```
   
 * This is what is looks like now.
    [http://www.enochsystems.com/intl/products/lcd-board-dev-kits/vuekit-6x-series/#tab-3318bf148ff9411ded2](http://www.enochsystems.com/intl/products/lcd-board-dev-kits/vuekit-6x-series/#tab-3318bf148ff9411ded2)
 * If you know of a better way to accomplish what I was trying to achieve, please
   let me know! In the meanwhile, thanks for all your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Highlight Rows using Table Manipulation](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/#post-6672600)
 * To clarify, we only need first column th on **some **of the first column cells.
   We don’t need it on all of them.
 * Is there perhaps some alternative version of the Row Highlighting extension that
   would allow Cell highlighting? Then we could highlight a cell based on a keyword.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Highlight Rows using Table Manipulation](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/#post-6672599)
 * Thank you so much Tobias. row_highlight_full_cell_match=false solved my highlighting
   problem.
 * We need first_column_th so we can change the color and font of the column “header”
   cell, as well as the width. This is what our table is supposed to look like.
   
   [http://www.enochsystems.com/intl/products/lcd-board-dev-kits/vuekit-93-series/#tab-187a1dbe61d6ae64918](http://www.enochsystems.com/intl/products/lcd-board-dev-kits/vuekit-93-series/#tab-187a1dbe61d6ae64918)
 * You will notice that under the **PROCESSOR & CHIPSET** “specification title” 
   the first column cells are purple and 200px wide.
 * On this page, below, I have inserted a table from TablePress, twice. The first
   table on this page is first_column_th=true. The second table is first_column_th
   =false.
    [http://www.enochsystems.com/intl/nitrogen6x-specifications/](http://www.enochsystems.com/intl/nitrogen6x-specifications/)
 * Here is the css that we use for the table
 *     ```
       table.itemspec {
       	width: 100%;
       	margin: 0px 0 10px;
       	border-collapse: collapse;
       	text-align: left;
       	border-bottom: 1px solid #e0dede;
       	border-top: 1px solid #999;
       	border-right: 1px solid #e0dede;
         -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
         -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
         box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
   
       }
       .itemspec th, .itemspec td {padding: 5px 10px;border-top: 1px solid #e0dede;text-align: left;border-left: 1px solid #e0dede;}
       .itemspec th {color: #773D97;border-right: 1px solid #e0dede;font-family: Lato, Arial, Helvetica, sans-serif;
       	line-height: 1.1em;font-weight: 400;width: 25%;max-width:200px}
       .itemspec td {width: 75%;}
       	/*  Define the background color for all the ODD background rows  */
       	.itemspec tr:nth-child(odd){
       		background: #fff;
       	}
       	/*  Define the background color for all the EVEN background rows  */
       	.itemspec tr:nth-child(even){
       		background: #F7F7F9;
       	}
       .itemspec .spectitle {background-color: #444;color: #FFF;font: bold 15px/1.1em 'Lato', Arial, sans-serif;padding: 8px 0 5px 10px;text-transform: uppercase;border-bottom: 1px solid #e0dede;border-top: none;}
       .row-highlight-spectitle td {background-color: #444;color: #FFF;font: bold 15px/1.1em 'Lato', Arial, sans-serif;padding: 8px 0 5px 10px;text-transform: uppercase;border-bottom: 1px solid #e0dede;border-top: none;}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Highlight Rows using Table Manipulation](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/highlight-rows-using-table-manipulation/#post-6672568)
 * Thanks for the quick response Tobias.
 * I installed and activated “TablePress Extension: Row Highlighting”.
 * I used the following shortcode
    [table id=1 first_column_th=true row_highlight
   =”chipset” /]
 * The table still looks the same and I don’t see where the CSS class, row-highlight-
   chipset, is being applied to the cells.
    [http://www.enochsystems.com/intl/nitrogen6x-specifications/](http://www.enochsystems.com/intl/nitrogen6x-specifications/)
 * What am I missing? What I am doing wrong?
 * BTW I also noticed that #colspan# doesn’t work when I am using the first_column_th
   =true shortcode. Is that a known issue?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Does WordPress Limit Content to be Upload to a Page?](https://wordpress.org/support/topic/does-wordpress-limit-content-to-be-upload-to-a-page/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/does-wordpress-limit-content-to-be-upload-to-a-page/#post-2950683)
 * Does anyone know someone I can pay to get an answer to this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Can't Add New Plugin – Fatal error: Class 'WP_Filesystem_Base' not found](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/)
 *  [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/#post-2425547)
 * Does anyone know someone I can pay to get an answer to this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Can't Add New Plugin – Fatal error: Class 'WP_Filesystem_Base' not found](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/)
 *  [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/#post-2425545)
 * Any help on this would be greatly appreciated.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Does WordPress Limit Content to be Upload to a Page?](https://wordpress.org/support/topic/does-wordpress-limit-content-to-be-upload-to-a-page/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/does-wordpress-limit-content-to-be-upload-to-a-page/#post-2950664)
 * Any help on this would be greatly appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Can't Add New Plugin – Fatal error: Class 'WP_Filesystem_Base' not found](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/)
 *  [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/cant-add-new-plugin-fatal-error-class-wp_filesystem_base-not-found/#post-2425543)
 * I am getting the same exact error under similar circumstances as kgh. Can anyone
   shed any light on this issue?
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Search case insensitive?](https://wordpress.org/support/topic/search-case-insensitive/)
 *  [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/search-case-insensitive/#post-1082248)
 * I would be interested in this too, does anyone know how to disable the case sensitivity?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Displaying posts on a static page](https://wordpress.org/support/topic/displaying-posts-on-a-static-page/)
 *  Thread Starter [orbitrod](https://wordpress.org/support/users/orbitrod/)
 * (@orbitrod)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/displaying-posts-on-a-static-page/#post-973560)
 * A regular HTML file, I will try your code and let you know how it goes.

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