I am new to excel and also to creating a web page.I have to create about twenty-five (25) excel spread sheets and thenupload them to twenty-five (25) different web pages. Each spread sheetwill have the exact same format and style, just different translatedwords.I have taken an excel spread sheet (saved as a .htm file) that has two(2) columns and over one hundred (100) rows and added it to a web pageat www.postalstampssale.com/...ic_keywords_French.htm<www.postalstampssale.com/...ic_keywords_French.htm>I have two (2) questions:1 - In both my xls file and htm file, the words are in black bold, buton the above URL they appear in blue regular font. If it would help foryou to see copies of the two excel files, I can send you a copy. How canI make the words on the web page black bold? 2 - How can I place bordersaround each cell?
Had another look and you may need to include a few more classes as follows.x126, .x127, .x128, .x129, .x130, .x131{color:#000000 !important;Border 2px solid black !important;}
The style hierarchy is complex in this site. I would suggest that in your CSSsheet you put.x126, .x127{color:#000000;}However the page is so complex that I am not sure if that is overridden by alater style somewhere.The borders are more complex as they are overridden by inline styles.You could try putting in the style declaration above:"Border 2px solid black !important;" In fact you could also use the!important declaration for the color as well (it overrides subsequent andhigher ranking styles) so the final style declaration would be.x126, .x127{color:#000000 !important;Border 2px solid black !important;}
Can you please tell me exactly where to place the coding that yousuggested.
I am not certain if the site has a global style sheet. If it has you mightput the style information there. If not, there is probably a style section inthe header of the page and it could go there, but that means that you have toput the style directives in every sheet affected. That is why we use globalstyle sheets - you only do it once. You would insert my suggested code on theline following any close brace }