Title: csskevin's Replies | WordPress.org

---

# csskevin

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/users/csskevin/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/csskevin/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Where are the ‘design’ options?](https://wordpress.org/support/topic/where-are-the-design-options/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/where-are-the-design-options/#post-14404700)
 * As I figured out the feature has been deprecated since 3.0.5+
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Feature Request – Font size options](https://wordpress.org/support/topic/feature-request-font-size-options/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/feature-request-font-size-options/#post-14404654)
 * Hey,
    It is not a good idea to directly modify the `css` files of the plugin,
   because as you said an update will overwrite it.
 * What you can basically do is to modify your template css file directly (if you
   work with child themes) or using a CSS plugin, which lets you add custom CSS 
   snippets.
 * You then can override the style of the lightbox. For instance:
 *     ```
       #lightbox #caption {
         font-size: 20px !important;
         // Other changes...
       }
   
       #lightbox #helpDisplay {
        // etc ...
       }
       ```
   
 * I don’t see a reason to add a feature to customize the CSS, especially because
   the `lightbox.css` doesn’t include a single `!important` statement, so overriding
   shouldn’t be a problem.
 * You can lookup on the GitHub repository on how the `lightbox.css` file is designed,
   so that you can override it: [https://github.com/awesomemotive/wp-lightbox-2/blob/master/styles/lightbox.css](https://github.com/awesomemotive/wp-lightbox-2/blob/master/styles/lightbox.css)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Where are the ‘design’ options?](https://wordpress.org/support/topic/where-are-the-design-options/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/where-are-the-design-options/#post-14404585)
 * Hey,
    That’s odd. I agree on that, the Plugin page shows a tab called `Design
   Settings`. Unfortunately, the version I work on, doesn’t have this feature. Also
   the previous versions, before I contributed, didn’t have `Design Settings`. Honestly
   I am not sure where this comes from, we will update the plugin page regarding
   how it really looks like to avoid confusion.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Disable scrolling](https://wordpress.org/support/topic/disable-scrolling-2/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/disable-scrolling-2/#post-14404496)
 * Hey,
    There are two ways how you can add an image, so that the Lightbox registers
   it: `<a href="images/image-1.jpg" rel="lightbox" title="my caption">image #1</
   a>` In this case, Lightbox will just show this image
 * However you can add a group of images like this:
 *     ```
       <a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
       <a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
       <a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a>
       ```
   
 * The difference here is, that the images are grouped by `roadtrip` in this case.
   So you can switch between these three images, due all images contains `roadtrip`
   in `rel` .
 * You just need to change the `rel` attribute to `rel="lightbox"` in order to get
   that working.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] bug in 3.0.6.3 ver on mobile](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/#post-13923856)
 * Have you installed the newest version of WP-Lightbox-2 (3.0.6.5)?
    On which mobile
   device does this error occur, any specific browser?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Title and HTML Tags Missing after Changing Thems](https://wordpress.org/support/topic/title-and-html-tags-missing-after-changing-thems/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/title-and-html-tags-missing-after-changing-thems/#post-13923809)
 * The second link is broken, there is a 404 error: [https://sandbox.tommymoss.net/gallery-01/](https://sandbox.tommymoss.net/gallery-01/).
 * However, in the first link you provided ([https://tommymoss.net/gallery-01/](https://tommymoss.net/gallery-01/)),
   you use Fancybox instead of WP Lightbox 2.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] PHP Notice after update](https://wordpress.org/support/topic/php-notice-after-update-2/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/php-notice-after-update-2/#post-13894293)
 * Hey,
    that’s odd, due the last versions doesn’t include modification of this 
   functionality. However I cannot replicate the PHP Notice: – Which PHP version
   do you use? – Which WordPress version do you use? – Where does the notice gets
   displayed? (On the page itself, or in the wp-admin) – Is there any special case,
   where this happens or do you always get this notice?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Featured Image Open In lightbox](https://wordpress.org/support/topic/featured-image-open-in-lightbox/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/featured-image-open-in-lightbox/#post-13882381)
 * Unfortunately there is currently no way to do that with the `wp-lightbox-2`plugin
   itself. The problem is, that the plugin only works with link tags, like an `a`
   tag. The Featured Image is an `img` tag, which makes it not possible to use it
   right now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Conflicting plugings](https://wordpress.org/support/topic/conflicting-plugings/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/conflicting-plugings/#post-13882133)
 * This issue has been fixed with the code rewrite.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] bug in 3.0.6.3 ver on mobile](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/#post-13882124)
 * This bug has now been fixed in the new release.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Bug in WordPress 5.5 – Solution provided](https://wordpress.org/support/topic/bug-in-wordpress-5-5/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bug-in-wordpress-5-5/page/2/#post-13882121)
 * There is now a new version of Wp-Lightbox 2 available, which fixes this bug.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] 5.6 compatible?](https://wordpress.org/support/topic/5-6-compatible/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/5-6-compatible/#post-13882117)
 * There is now a new version available 3.0.6.5, which officially supports wordpress
   5.6.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] bug in 3.0.6.3 ver on mobile](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bug-in-3-0-6-3-ver-on-mobile/#post-13845067)
 * The bug will be fixed in the upcoming version. It is currently under review and
   will be released asap.
    Status: [https://github.com/awesomemotive/wp-lightbox-2/pull/3](https://github.com/awesomemotive/wp-lightbox-2/pull/3)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Bug in WordPress 5.5 – Solution provided](https://wordpress.org/support/topic/bug-in-wordpress-5-5/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bug-in-wordpress-5-5/page/2/#post-13845060)
 * The bug fix is included in the latest pull request.
    [https://github.com/awesomemotive/wp-lightbox-2/pull/3](https://github.com/awesomemotive/wp-lightbox-2/pull/3)
 * After review the new version will be released.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Lightbox 2] Bug in WordPress 5.5 – Solution provided](https://wordpress.org/support/topic/bug-in-wordpress-5-5/)
 *  Plugin Contributor [csskevin](https://wordpress.org/support/users/csskevin/)
 * (@csskevin)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/bug-in-wordpress-5-5/page/2/#post-13805524)
 * [@fierevere](https://wordpress.org/support/users/fierevere/) Sorry, for the late
   response: Which WordPress version do you use? I’ll keep looking to fix this bug
   with the next release.

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/users/csskevin/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/csskevin/replies/page/2/?output_format=md)