Open drm1963 opened 6 years ago
I'll take a look at the templates included with the News Box Manager's base files to make sure that sufficient class
and id
attributes are provided so that store owners have an easier way to style their "news".
Remember that every store's coloring is different, so while adding that black background suits your store's coloring, it's not going to be universal.
True but with it in there others could very easily Chang colors with very little to no css knowledge.
Sent by me
On Sep 30, 2018, at 2:12 PM, lat9 notifications@github.com wrote:
I'll take a look at the templates included with the News Box Manager's base files to make sure that sufficient class and id attributes are provided so that store owners have an easier way to style their "news".
Remember that every store's coloring is different, so while adding that black background suits your store's coloring, it's not going to be universal.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
It would be even better if more CSS control code were included.
Example is if you are using a dark Template then just this one change to the stylesheet_news_box_manager.css file would be one simple addition to assist people control the back ground color. As there are plenty out there that do not understand how CSS functions wo this like this would assist them.
Change this: .news-cell { display: table-cell; padding: 0.5em; border: 1px solid #444; }
to this:
/ add this one bit of code to chage the back ground color the # is hex color code for black #000} / .news-cell { display: table-cell; padding: 0.5em; border: 1px solid #444;background-color:#000; }
Even more could be added to these files to assist people!