As I work on creating a print css for a Drupal page that was developed using Artisteer, I am facing the challenge of eliminating borders from the printed version. Despite my thorough search through the HTML and CSS files, I have only identified two instances where borders with specified colors are mentioned. All other border settings in the CSS code are either set to 0 or none. Surprisingly, changing these values to white did not yield any results.
Even adding the following code did not make a difference:
*
{
border: 0px transparent !important;
}
I'm puzzled as to how else these borders could be defined – perhaps under different properties than border
or border-color
? What steps can I take to uncover the source of these elusive borders? Even utilizing browser inspection tools has not provided me with a solution.