[Imported] HTML Table Borders
How can I have the table borders appear in product descriptions from imported html code?
0
-
Have you tried using the style or border attributes for your tables?
<table style="border:1px solid black;">
or try<table border="1">
Or you can use CSS:
<style>
table, th, td {
border: 1px solid black;
}
</style>You can do a simple find and replace in your excel documents and re-upload. I would definitely do a test run first though and find which method works best for you. Good luck!
0
Please sign in to leave a comment.
Comments
1 comment