Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8315701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:11:32+00:00 2026-06-08T21:11:32+00:00

I am printing one page from my web application from different browser. It contains

  • 0

I am printing one page from my web application from different browser. It contains some small images like tick mark, question mark on page.

Now my problem is that it is not printing images on print out. in IE it works fine and print images but in Google Chrome, Firefox it is not printing images.

Can any one have an idea what to do to print images in print out from Chrome and Firefox?

Thanks in advance.

below is my code for generating image in page.

I am preparing cell with class called ‘tickmark’.

 HtmlTableCell tc = new HtmlTableCell();
                        tc.InnerText = "";

                        if (Convert.ToInt64(result[h]) == 1)
                        {
                            tc.InnerHtml = "<b class='tickmark'></b>";
                        }

                        trContent.Cells.Add(tc);

and tickmark class having code:

b.tickmark { background:url(../images/tickmark.png) no-repeat; width:13px; height:10px; display:block; vertical-align:middle; margin:0 auto; }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T21:11:33+00:00Added an answer on June 8, 2026 at 9:11 pm

    Modern browsers do not print background images. These CSS images are meant for styling.

    If that image is important, have it embeded on your page. images in a <img/> tag will work.

    To avoid breaking your current layout, you can do this:

    Have another css file print.css and link it as follows:

    html:

    <link rel="stylesheet" type="text/css" href="main.css" media="screen" />
    <link rel="print stylesheet" type="text/css" href="print.css" media="print" />
    <div class="tick"><img src="images/tickmark.png" alt="tick" /></div>
    

    main.css

    .tick img {
        display: none;
    }
    

    print.css

    .tick img {
        display: block;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When printing a page from a browser, it refers to a print.css stylesheet declared
Trying to achieve the goal of printing selected page's element ONE-TO-ONE - the exact
I've got some code here for printing that prints a block of information from
I'm new to printing with java. First I start to print one page data
I have a small programming problem (php & javascript). On index.php page I'm printing
I have a J2EE based web application. In one of the pages there is
For ease of printing, I want to create one array of pointers to the
Why is it that both outs are printing 84? The first one should read
I'm printing the first line from a file: with open(path,r,encoding='utf8') as f: for i,
The javascript is printing out the HTML onto the page example below, is it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.