Title: Cells
Last modified: August 21, 2016

---

# Cells

 *  Resolved [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/)
 * Hi,
 * How can I erase the lines/boxes around each cell/picture?
    [http://www.nordicqaforum.com/speakers/](http://www.nordicqaforum.com/speakers/)
 * I use the plugin TinyMCE Advanced.

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

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125533)
 * If you’re not using a Child Theme, and if the theme doesn’t have a designated
   section of the dashboard for CSS modifications then install this Custom CSS Manager
   plugin [http://wordpress.org/plugins/custom-css-manager-plugin](http://wordpress.org/plugins/custom-css-manager-plugin)
 * Then use its “CSS Code” [section of the dashboard](http://wordpress.org/plugins/custom-css-manager-plugin/screenshot-1.jpg?r=704634)
   to hold your CSS modifications:
 * _Alternatively use your Child Theme style.css file to hold your CSS modifications:_
 *     ```
       table,
       table tbody td {
           border: 0;
       }
       ```
   
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125541)
 * Thank you Andrew. I am using the latest version of Fruitful code.
    It has a Custom
   CSS function. I tried to write in the code you gave me but nothing happened.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125673)
 * Clear your caching plugin’s cache and deactivate it – Don’t use caching plugins
   when developing your site.
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125675)
 * Thanks again Andrew. For this site I am not using a caching plugin.
    [http://www.kompetensinstitutet.se/smartaintranat/](http://www.kompetensinstitutet.se/smartaintranat/)
 * The borders are still there afte I added the code.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125676)
 * That’s a bit unfair, I didn’t have that information before. I didn’t know you
   wanted it to work on that site too.
 * First look at that site’s custom CSS and spot the syntax error:
 *     ```
       #page .container header.entry-header h1.entry-title, #page .container header.archive-header h1.archive-title {
       color:#5AC1E0 !important;
       ```
   
 * Close off your style first.
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125677)
 * Apologies for that Andrew. I was working on multiple sites the same time with
   the same error.
 * Now it works most of the time. I still have a border sometiems when I attach 
   a logo, example:
    [http://www.kompetensinstitutet.se/offentligpress/](http://www.kompetensinstitutet.se/offentligpress/)
   [http://www.kompetensinstitutet.se/offentlig-webb/](http://www.kompetensinstitutet.se/offentlig-webb/)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125678)
 * Okay now that’s a different context. Please do me a favour and list out all of
   the different contexts of the border issue.
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125679)
 * Many thanks Adrew! Its just the these three:
 * [http://www.kompetensinstitutet.se/offentligpress/](http://www.kompetensinstitutet.se/offentligpress/)
   
   [http://www.kompetensinstitutet.se/offentlig-webb/](http://www.kompetensinstitutet.se/offentlig-webb/)
   [http://www.kompetensinstitutet.se/smartaintranat/](http://www.kompetensinstitutet.se/smartaintranat/)(
   logo for the gold sponsor)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125715)
 * Add this:
 *     ```
       .site-content .entry-content p a img,
       .site-content .entry-content p img {
           box-shadow: none;
       }
       ```
   
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125735)
 * Thank you Andrew! It worked!
 * The only problem I have now is that there are some tiny borders still
    visible,
   after some pictures. You can see them here: [http://www.kompetensinstitutet.se/smartaintranat/](http://www.kompetensinstitutet.se/smartaintranat/)
   [http://www.kompetensinstitutet.se/offentlig-webb/](http://www.kompetensinstitutet.se/offentlig-webb/)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125738)
 * Add
 *     ```
       table tbody tr:last-child td:last-child {
           border: 0;
       }
       ```
   
 *  Thread Starter [niquality](https://wordpress.org/support/users/niquality/)
 * (@niquality)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125751)
 * Thank you once again Andrew. Works! 🙂
 * What is the easiest way to add a small responsive function on the website where
   for instance the pictures of the speakers would be 3 pictures next to each other
   on a big screen and when you watch it on a mobile device you see only one picture
   on the same line. Now I added the pictures in different cells, which does not
   make it responsive.
    [http://www.kompetensinstitutet.se/smartaintranat/](http://www.kompetensinstitutet.se/smartaintranat/)

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

The topic ‘Cells’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/fruitful/3.8.2/screenshot.png)
 * Fruitful
 * [Support Threads](https://wordpress.org/support/theme/fruitful/)
 * [Active Topics](https://wordpress.org/support/theme/fruitful/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/fruitful/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/fruitful/reviews/)

 * 12 replies
 * 2 participants
 * Last reply from: [niquality](https://wordpress.org/support/users/niquality/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/cells/#post-5125751)
 * Status: resolved