Search found 9 matches
- Mon Feb 07, 2011 9:13 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: fix position
- Replies: 3
- Views: 1478
Re: fix position
Hi, The better way to do is, go to the header image css and [text]position:fixed[/text] in this css.Its function is, it'll keep the image fixed other than image all the content get scrolled when you scroll the page with the mouse.You can also type <div style="position:absolute; top:600px; left:...
- Mon Feb 07, 2011 9:04 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: change div height according to content
- Replies: 5
- Views: 4054
Re: change div height according to content
Hi,

This makes the div, increase and decrease based on the addition of content to the div.Height:auto;
width:auto;
- Mon Feb 07, 2011 8:54 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: How to take printout by button of php webpage
- Replies: 1
- Views: 1350
Re: How to take printout by button of php webpage
Hi,
You can use this java script coding for taking print out.
You can use this java script coding for taking print out.
Code: Select all
function winPrint(){
document.getElementById("pButton").style.display = "none";
window.print();
}
...
<button id="pButton" onclick="winPrint()" />
...
- Tue Feb 01, 2011 1:38 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: make a menu have rounded corners
- Replies: 3
- Views: 1511
Re: make a menu have rounded corners
Hi, { #primary-menu ul.primary-menu li a.active { color: black; background-color:yellow; } Change this css by adding menu images. The only way to do is download the round corner images and paste it in your menu using css. you can use some photos for your primary menu and place them in its corners.
- Tue Feb 01, 2011 1:29 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: Background image
- Replies: 4
- Views: 1411
Re: Background image
Hi,
Proper space between the code is needed to display image in IE
Proper space between the code is needed to display image in IE
Go to your CSS
bg
{
background: url("image url") no-repeat;
height:/*based on your image*/
width:/*based on your image*/
}
- Tue Feb 01, 2011 1:22 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: Animated content edit controls
- Replies: 4
- Views: 1432
Re: Animated content edit controls
Hi, You have to use this code for animating your content or you can use jquery plugin. $(document).ready( function(){ $('.trigger').hover( function(){ // enter animation $('.slidedown').stop(true,true).animate({ height: ['toggle', 'swing'], }, 600, function() { /* animation done */ }); }, function()...
- Mon Jan 31, 2011 5:24 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: td background image height will not expand
- Replies: 3
- Views: 1404
Re: td background image height will not expand
Hi,
Add the image using CSS like
Add the image using CSS like
The no-repeat option is for display the original image without tile.Chage width and height according to the image size.{
background:url("boxtopbg.gif") no-repeat;
width:auto;
height:auto;
}
- Mon Jan 31, 2011 5:18 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: Convert Jpeg into html
- Replies: 2
- Views: 1142
Re: Convert Jpeg into html
Hi,
First you have to add the image in a separate html file and then link the image to your website.
Create a html file and add the image to the html file using img tag and save it as image.html
Then add simply to your main page file as your image file.Try this, it'll work.
First you have to add the image in a separate html file and then link the image to your website.
Create a html file and add the image to the html file using img tag and save it as image.html
Then add simply to your main page file as your image file.Try this, it'll work.
- Mon Jan 31, 2011 4:49 am
- Forum: HTML, CSS and other UI Design Technologies
- Topic: DIV Positioning, question
- Replies: 5
- Views: 1676
Re: DIV Positioning, question
Our site (ten years old) is primarily built on tables, fixed width, etc. We use css extensively, but the tables are still utilized. Sort of a "hybrid" design that will do until we transition to a pure css design. On the home page, there are several elements that are contained in absolute-...