Can I haz your soul?
Hello. So I am attempting to load a Bitmap into my project. I am using Visual Studio 2010. I am going to the resource view, right click, choose to add a new Resource, and from there I pick Import. Then, I simply select a .bmp file and I choose open. The .rc file receives an asterisk, meaning that it has been modified, but my picture is not imported at all. I have tried this with 2008 and 2005 and 2003, but to no success.
It works if I am creating one from scratch though. What could be the problem? Or should the .bmps have some special properties, such as 256 colors?
Post HTML.
<table align="center" cellspacing="50px" id="text" hspace="0px"/>
<th>You are now on the About page. </th>
<tr><td>Some descriptive text to be inserted here in order to give information </td></tr>
<tr><td><a href="index.htm"/> <img src="_images/Cross.jpg" width="80" height="80"/></td></tr>
</table>
I am SICK and TIRED of having this stupid issue. I have a very simple page. A background image which fits the entire browser with:
position: absolute;
top:0px;
left:0px;
width:100%;
height:100%;
z-index:0;
And I also have a blasted table which has two lines and a small image. The problem is that when I re-size the page, HUGE white regions appear to the right and the bottom! Why does this happen?! Here is the code for the table. Please tell me how should I get around this without breaking anything.
#text
{
position:absolute;
z-index:2;
font-family:Times New Roman;
font-size:32px;
color:#FFF;
top:auto;
text-align:center;
width: 100%;
border: 5px hidden;
overflow: hidden;
}
Thanks,
C