GMOD / jbrowse

JBrowse 1, a full-featured genome browser built with JavaScript and HTML5. For JBrowse 2, see https://github.com/GMOD/jbrowse-components.
http://jbrowse.org
Other
460 stars 199 forks source link

JBrowser configuration #1603

Closed werhmk closed 3 years ago

werhmk commented 3 years ago

Hi, how can I remove the vertical bar in background by setting the configuration file? As the red arrows showed in the figure. Jbrower1

cmdcolin commented 3 years ago

you can add this to your index.html

<style>
            .jbrowse div.gridline {
                border: none !important;
            }
            .jbrowse div.gridline_major {
                border: none !important;
            }
        </style>
werhmk commented 3 years ago

you can add this to your index.html

<style>
            .jbrowse div.gridline {
                border: none !important;
            }
            .jbrowse div.gridline_major {
                border: none !important;
            }
        </style>

Thanks, I will try.

cmdcolin commented 3 years ago

maybe can close for now :)