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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:19:49+00:00 2026-06-15T11:19:49+00:00

i have the below code in a footer and for some reason this part:

  • 0

i have the below code in a footer and for some reason this part:

<!-- save -->
        <div id="saveWrapper">  
            <div id="save">  
                <img src="img/save.png" alt="Save Image" width="32" height="32" id="saveButton" title="Save Image" />  
            </div>  
            <div id="textdownload">   
                <img src="img/cancel.png" alt="Cancel" width="32" height="32" id="resetButton" title="Continue Drawing" /> 
                Right click the image to download.  
            </div>  
        </div>

It is interfering with this part right below it.

        <!-- brush colour options -->
        <input type="radio" name="colour" id="red" value="red" />
        <label for="red"><img src="img/red.png" alt="Red"></label>
        <input type="radio" name="colour" id="green" value="#00ff00" />
        <label for="green"><img src="img/green.png" alt="Green" /></label>
        <input type="radio" name="colour" id="blue" value="blue" />
        <label for="blue"><img src="img/blue.png" alt="Blue" /></label>
        <input type="radio" name="colour" id="black" value="black" />
        <label for="black"><img src="img/black.png" alt="Black" /></label>
        <input type="radio" name="colour" id="white" value="white" />
        <label for="white"><img src="img/white.png" alt="White" /></label>
        <input type="radio" name="colour" id="random" value="random" />
        <label for="random"><img src="img/random.png" alt="Random" /></label>

        <img src="img/spacer.png" width="32" height="32">

        <!-- brush size options -->
        <input type="radio" name="size" id="1" value="1" />
        <label for="1"><img src="img/1p.png" alt="1 Point"></label>
        <input type="radio" name="size" id="2" value="2" />
        <label for="2"><img src="img/2p.png" alt="2 Point" /></label>
        <input type="radio" name="size" id="3" value="3" />
        <label for="3"><img src="img/3p.png" alt="3 Point" /></label>
        <input type="radio" name="size" id="4" value="4" />
        <label for="4"><img src="img/4p.png" alt="4 Point" /></label>
        <input type="radio" name="size" id="10" value="10" />
        <label for="10"><img src="img/10p.png" alt="10 Point" /></label>

        <img src="img/spacer.png" width="32" height="32">

        <!-- clear canvas -->
        <input type="image" id="clear" value="Clear" src="img/clear.png">
        </div>

The problem is that the radio buttons above are not clickable or selectable and i cant figure out why.

Here is the accompanying css for the two items:

/* Styling for radio buttons */
.input_hidden {
position: absolute;
left: -9999px;
}

.selected {
background-color: #ccc;
}

#colour label {
display: inline-block;
cursor: pointer;
}

#colour label:hover {
background-color: #efefef;
}

#colour label img {
padding: 3px;

}

/* Footer styling */
footer{
background-color: #323232;
bottom: 0;
box-shadow: 0 -1px 20px rgba(0,0,0,0.4);
height: 42px;
left: 0;
position: fixed;
width: 100%;
z-index: 100000;
}

#saveWrapper { 
position: absolute;
 }  

#saveButton {  
float: right;  
margin-left: 590px;
margin-top: 5px;  
position: relative;  
z-index: 9999;  
cursor: pointer;  
overflow: hidden;  
}  

#textdownload {  
display: none;  
position: absolute;  
font-family: Verdana, Geneva, sans-serif;  
color: #FFFFFF;  
font-size: 12px;  
float: right;  
margin-top: 5px;  
margin-left: 630px;  
width: 300px;  
overflow: hidden;  
}

If i remove the fist code snippet outside the footer the radio buttons work fine?

Any help appreciated!

  • 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-15T11:19:50+00:00Added an answer on June 15, 2026 at 11:19 am

    Try This Add z-index:-1;

    #saveWrapper { 
      z-index:-1;
     } 
    

    Live demo

    ———–

    Or
    Second Option is

    Add one div in your button

    and define z-index as like this

    Css

    #saveWrapper { 
          z-index:1;
         }
        .form_bt{
        position:relative;
          z-index:2;
        }
    

    HTML

    <!-- save -->
            <div id="saveWrapper">  
                <div id="save">  
                    <img src="img/save.png" alt="Save Image" width="32" height="32" id="saveButton" title="Save Image" />  
                </div>  
                <div id="textdownload">   
                    <img src="img/cancel.png" alt="Cancel" width="32" height="32" id="resetButton" title="Continue Drawing" /> 
                    Right click the image to download.  
                </div>  
            </div>
    
    
    <div class="form_bt"> <!-- brush colour options -->
            <input type="radio" name="colour" id="red" value="red" />
            <label for="red"><img src="img/red.png" alt="Red"></label>
            <input type="radio" name="colour" id="green" value="#00ff00" />
            <label for="green"><img src="img/green.png" alt="Green" /></label>
            <input type="radio" name="colour" id="blue" value="blue" />
            <label for="blue"><img src="img/blue.png" alt="Blue" /></label>
            <input type="radio" name="colour" id="black" value="black" />
            <label for="black"><img src="img/black.png" alt="Black" /></label>
            <input type="radio" name="colour" id="white" value="white" />
            <label for="white"><img src="img/white.png" alt="White" /></label>
            <input type="radio" name="colour" id="random" value="random" />
            <label for="random"><img src="img/random.png" alt="Random" /></label>
    
            <img src="img/spacer.png" width="32" height="32">
    
            <!-- brush size options -->
            <input type="radio" name="size" id="1" value="1" />
            <label for="1"><img src="img/1p.png" alt="1 Point"></label>
            <input type="radio" name="size" id="2" value="2" />
            <label for="2"><img src="img/2p.png" alt="2 Point" /></label>
            <input type="radio" name="size" id="3" value="3" />
            <label for="3"><img src="img/3p.png" alt="3 Point" /></label>
            <input type="radio" name="size" id="4" value="4" />
            <label for="4"><img src="img/4p.png" alt="4 Point" /></label>
            <input type="radio" name="size" id="10" value="10" />
            <label for="10"><img src="img/10p.png" alt="10 Point" /></label>
    
            <img src="img/spacer.png" width="32" height="32">
    
            <!-- clear canvas -->
            <input type="image" id="clear" value="Clear" src="img/clear.png">
    
              </div>
    

    Demo for this

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have below code: <a href=# id=@item.Id name=vote ><img src=/Content/images/021.png style=float:left alt= /></a> which
I have explained the problem below this code <div id='content'> <div id='help'> blah blah
I have a #sidebar (which starts below my #header div) and a #footer (around
I have below code: class Program { static void Main(string[] args) { Task[] tasks
I have below code in html. <li class=selected runat=server id=lihome><a href=/ISS/home.aspx title=Home><span>Home</span></a></li> Now I
I have below code behind in c# if (Session[cmpDictionaryTitle]!= null) { downloadLinks.Text += @<li><a
I have below code to insert a style into DOM (there is a use
I have below code.The logic here is if HostList conatains any blanck entry it
I have below code which overrides equals() and hashcode() methods. public boolean equals(Object obj)
I have below code snippet SimpleDateFormat dateFormat = new SimpleDateFormat( yyyy-MM-dd hh:mm:ss.SSS); String processedContentDate=2012-04-10

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.