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 6607709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:31:56+00:00 2026-05-25T19:31:56+00:00

I would like to put a big (almost full screen) alpha transparent image on

  • 0

I would like to put a big (almost full screen) alpha transparent image on a website, but I have the following problem:

  • if I use JPG the size and compression is OK, but I cannot make it transparent (100 kB)

  • if I use PNG-24 the size is HUGE (3-4 MB)

  • if I use PNG-24 and http://www.8bitalpha.com/ to convert it to PNG-8 then the size is smaller but I cannot reproduce the original graphics in 256 colors. The size is still quite big (700 kB)

What I was thinking about is what if I create PNG-8 files just for the transparent regions and a JPG image for the non-transparent regions. And use absolute positioning to move things into place. Has anyone done anything like this?

Or an other idea, but that’s something I really don’t have experience with: is it possible to use a JPG image and combine it with alpha transparency from an 8-bit PNG? I mean using JS or CSS3 or Canvas or something what I have never used before?

Here is the page where I’m using PNG-8 now, but it’s quite big (700 kb) and some colors are lost.

http://ilhaamproject.com/sand-texture-2/

  • 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-05-25T19:31:56+00:00Added an answer on May 25, 2026 at 7:31 pm

    I’ve used the same JPG + PNG trick before with large, transparent background images. Take your large image and cut it up into 2 types of rectangular pieces:

    1. Those that don’t need transparency (save as JPG)
    2. Those that do need transparency (save as PNG)

    The goal is to get as much image detail as possible saved as JPG.

    Next you’ll need to piece everything back together using relative and absolute positioning:

    <div class="bg">
        <div class="content">
            http://slipsum.com
        </div>
    
        <div class="section top"></div>
        <div class="section middle"></div>
        <div class="section bottom"></div>
    </div>
    
    .bg {
        width: 600px; /* width of your unsliced image */
        min-height: 800px; /* height of your unsliced image, min-height allows content to expand */
        position: relative; /* creates coordinate system */
    }
    
    /* Your site's content - make it appear above the sections */
    .content {
        position: relative;
        z-index: 2;
    }
    
    /* Define the sections and their background images */
    .section {
        position: absolute;
        z-index: 1;
    }
    
    .section.top {
        width: 600px;
        height: 200px;
        top: 0;
        left: 0;
        background: url(top.png) no-repeat 0 0;
    }
    
    .section.middle {
        width: 600px;
        height: 400px;
        top: 200px;
        left: 0;
        background: url(middle.jpg) no-repeat 0 0;
    }
    
    .section.bottom {
        width: 600px;
        height: 200px;
        top: 600px;
        left: 0;
        background: url(bottom.png) no-repeat 0 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a big image, and some text that I would like to lay
I would like to put a string into a byte array, but the string
I would like to put a placeholder into e.g. the footer.html and have it
I would like to put jQuery at the bottom of the body tag but
Imagine a user that would like to put a form on their website that
I'm a pretty big noob to Java, but I would like try out htmlunit.
I have a big excel file that looks like this: I would like to
I have a big array, that I would like to load into memory only
So I have a bunch of boolean arrays that I would like to put
I would like to put a link to a webpage in an alert dialog

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.