Quote Originally Posted by drm1963 View Post

Now if I can teach myself CSS and how to change just the link colors to

Black text or maybe leve it white but give it a Black background in the table would be the easiest fix!

Anyone out there willing to give me a hand PLEASE. As any changes I attempt effects the whole template not just the News Archive Table!

Here is the small amount of code form the STYLESHEET_NEWS_BOX_MANAGER.CSS file.

Can anyone assist me!


Code:
#newsscrollbox ol { margin: 0; padding: 0; list-style-position: inside; }

#moreNewsDefault .news_header { font-weight: bold; padding-right: 0.3em; }
#moreNewsDefault .newsContent { padding: 0.3em 0; }

#news-table { display: table; border-collapse: collapse; width: 100%; margin: 0.8em 0;}
.news-row { display: table-row; border: 1px solid #444; }
.news-heading { font-weight: bold; }
.news-cell { display: table-cell; padding: 0.5em; border: 1px solid #444; }
Supposedly the News Archive section will not work because :

Quote I pulled from an email I received on this same subject!
UN-Quote

One simple CSS file dropped into the CSS folder of both templates and hopefully a small amount of CSS code and it is fixed in Winchester_black!!

The CSS file moved into the Winchester_responsive templates CSS folder fixed it !

Click image for larger version. 

Name:	Screenshot 2018-06-19 20.23.37.jpg 
Views:	153 
Size:	44.6 KB 
ID:	17931


Without actually playing around with it I think this is the right place to try, in red is what you could write for text color change:

#moreNewsDefault .newsContent { padding: 0.3em 0; color: #000000;}

#news-table { display: table; border-collapse: collapse; width: 100%; margin: 0.8em 0; color: #000000;}


Try one first then test out your page if that doesn't work then try the other one.

color: is usually for font color
background-color: is usually for the color behind the letters...LOL

css is fairly simple to change color choices --on the other hand since .newsContent is grouped with the first one, it may have to be grouped by itself by just adding it separately and just removing the .newsContent from the other:

.newsContent { padding: 0.3em 0; color: #000000;}