Neatline bubble appearance

How does one change the look of the pop up bubble? I want to change the background transparency, color, font etc?
Thanks

You should be able to override this by editing your theme's CSS file, and add a rule with the properties and values you want. Something like this should work, but your mileage may vary:

.bubble.static.selected {
    background: #fff;
    background: rgba(255,255,255,0.8);
    color: #333;
    font-family: Helvetica, sans-serif;
}

The selector is key: .bubble.static.selected. This is styling the static popup bubble that's also selected—one that has a class attribute equal to "bubble static selected".

You can use the web developer tools that are usually built into modern browsers to figure out the HTML and CSS that are used. (See the Chrome Web Developer tools page for an example of what's possible here.)

You can see all the default CSS rules that Neatline uses by looking at the Stylus file for the public Neatline exhibit CSS.

Hope this helps!

Thank you.
Where is the css file for Neatline located?

Thanks, got this working