Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble getting the sponsors sections of the following website to center correctly, I'm using responsive webdesign, and having trouble the sponsors to center correctly.

Thanks...

http://dev.marshallareastagecompany.org/

share|improve this question

migrated from webmasters.stackexchange.com Oct 19 '12 at 9:17

3 Answers

Goto http://dev.marshallareastagecompany.org/public/css/pages/index.css and find rule #sponsors ul (most probably on line 128)

#sponsors ul{
  padding:0px;
}

Add property text-align:center so that final style looks like:

#sponsors ul{
  padding:0px;
  text-align:center;
}

Tested on FF and Chrome with Firebug, and working fine...!!!

Another way is to add a width to #sponsors or #sponsors ul and assign property margin:0 auto.

share|improve this answer
It doesn't feel right to me to add text-align:center in order to center non-textual elements? – w3d Oct 19 '12 at 9:31
1  
@w3d : text-align property is not intended to align text only contents. It describes how inline content like text is aligned in its parent block element. According to the CSS specification, it applies to inline content of a block element. This implies that you aren't just limited to aligning text - that the text-align property can be used to align any element within a block level element. – rajukoyilandy Oct 19 '12 at 9:39
This seems to work, however on my screen, the bottom incomplete row, aligns itself center, which is not as desirable... – Nate Gates Oct 19 '12 at 16:12

You need to give your sponsors div a width, or margin:0 auto doesn't know how to compute the position. Give it a width of 1315px, and see how it moves.

share|improve this answer
1  
Although by giving the container a fixed width, aren't you making the design less "responsive"? – w3d Oct 19 '12 at 9:29
1  
@w3d You're right, it's probably better to use a percentage width to keep the site responsive - so width: 90% instead of width: 1315px for instance. – What Oct 19 '12 at 10:16
You could also use @media in your CSS to change the width at different screen sizes. The main point, here, is that to get anything to auto-center using margin:0 auto, you have to know its width, whether specified in % or in px. – mori57 Oct 19 '12 at 13:15
Yea, I was hoping to avoid fixed widths, or even percentages, but its certainly an option with media queries... – Nate Gates Oct 19 '12 at 13:56

try adding this to your stylesheet:

#sponsors ul { text-align: center; }
#sponsors ul li { display: inline-block; }

should work.

share|improve this answer
yea, but inline-block doesn't work in IE7, except partially. – Patrik Alienus Oct 19 '12 at 23:13
yes, but IE7 is not exacly on responsive radar and for older IE browsers just use very simple styling or conditional one. – Janis Lankovskis Oct 20 '12 at 7:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.