close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

horizontal and vertical centered element

Thread began 5/10/2010 5:12 am by this_is_me | Last modified 5/10/2010 1:29 pm by Dani Chankhour | 1082 views | 3 replies |

this_is_me

horizontal and vertical centered element

Hi,
maybe this question is too easy, but I still could not make it work in all browsers. There are modern browsers and then there is Internet Explorer .
Is there an easy template to put a picture centered both vertically AND horizontally? If we start a web project we'd like putting a "under construction" png image containig the logo already. Which preset of CSS Sculptor would be best to handle it?

Sign in to reply to this post

Dani Chankhour

The best way to handle this is to add a padding to the outer div that contains the image, this will center the image horizontally and vertically and it should be consistent in all browsers.

For example:

.test {
padding:10px;
}

and

<div class="test">
<img src="test.jpg" />
</div>

Sign in to reply to this post

neilo

Centering a div horizontally and vertically

If you did want a div to be actually centered on the (screen using CSS, then you would need a little arithmetic too.

Make your div (e.g. 'Container') for your content - image, text, whatever, and give it the height and width that you want.

Example:

#Container {
height: 250px;
width: 400px;
}


• To center the div, give it a top margin of minus half its height ( -125px), and its left margin of minus half its width (-200px.).
• Give it a position value of 'absolute'.
• Give placement values of 50% for top, and 50% for left.

#Container {
height: 250px;
width: 400px;
margin-top: -125px;
margin-left: -200px;
position: absolute;
top: 50%;
left: 50%;
text-align: center;
}


This will centre the div on your page.

This is it, with background, border and color styles also added. Resize your window to test it.

Sign in to reply to this post

Dani Chankhour

Thanks neilo, it looks like i missed the part about centering an image in a page not a div.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...