Need Help with creating Button in box with text/image
Hi, Hope everyone fine on cf. i need a help with creating a button in box with html and css. What code (html/css) to use for achieve this kind of button in box?
You want to make those titles on the right hand side buttons?
Hi tempz! Yes i want make those titles on the right hand side button with hyperlink with it. the width of the button will be 280px . how to code this with css that, it will have bakground image for every title. I will have 4 titles like this. Thanks
One approach is to use the images as backgrounds for table cells. You'll probably want to put this table within a div and, perhaps, float it to the right.
Remove margins and padding for the table cells, and make them the same size as the background image(s);
insert two a-links (perhaps within divs) into each cell;
change the display to inline-block for the a-links, so they expand to fill their parent div, and also do this for the divs;
use height, width and margins for the divs so that they sit on top of the correct parts of the background image.
Use a css class for the first (left-sided) divs, as they all seem to be in the same position, although not exactly the same size: this will save you setting the css-metrics four times over.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS