Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12
  1. #11
    Join Date
    Jan 2009
    Location
    Baltimore, MD
    Posts
    21
    Plugin Contributions
    0

    Default Re: How to center image using CSS

    Quote Originally Posted by niccol View Post
    Hope that makes sense
    Yes. Actually it makes perfect sense. Thanks so much for your help.

  2. #12
    Join Date
    Jul 2009
    Posts
    19
    Plugin Contributions
    0

    Default Re: How to center image using CSS

    Having a width in there makes no sense. If you change the width or for that matter change the picture then you have to back into the CSS to change it.

    Another way to do it...

    <style type="text/css">
    .centeredImage
    {
    text-align:center;
    display:block;
    }
    </style>


    <img src="imgName.gif" class="centeredImage" alt="image description" height="100" width="100">

    Remember to use class and not id since you are using . and not #.

    There are even more ways to do it. Remember what you are looking to do is to put what you want into a block and then allow CSS to manipulate that block... if you need padding etc... it is to the BLOCK not to the IMAGE. What the image is should have no effect on what is going on with the CSS... ie. using width.

    <width> and <center> are depreciated tags which makes us think differently since with those we were working with the image itself not with the block it was enclosed in.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. How to center sidebox banner image?
    By ak6000 in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 24 May 2010, 11:18 PM
  2. How to center css button on forms?
    By J_R_S in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 9 Jul 2009, 02:18 AM
  3. using CSS for analytics code, how to?
    By Cliffrock in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 26 Aug 2008, 01:41 PM
  4. want to reposition an image using css. what is css to control this?
    By what44 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 10 Nov 2007, 05:03 AM
  5. How to center header image?
    By e-hol.co.uk in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 8 Aug 2006, 01:32 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg