Forum Moderators: open

Message Too Old, No Replies

Code for centering Adsense

         

camaroboy

5:10 pm on Aug 2, 2007 (gmt 0)

10+ Year Member



I am building a website using Joomla and am using the Joomlaspan Adsense module to put ads on the site. My problem is getting the ads to center on the website. Joomlaspan offers two solutions to the problem...neither of which are working.

1. They say to add text-align:center; to the Div CSS codes. When I view the source on my homepage it gives me the following code (which is not centering it):

<div style="width:728px;height:90px;text-align:center;">

2. Their second solution is to use the Module Class Suffix and add the following code into the css file:

table.moduletable-adsense {
text-align:center;
}

Neither of these solutions is fixing my problem. Any ideas why these arent working and a solution for what will center this?

Xapti

6:02 pm on Aug 2, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Both of those are just text-align:center. Those both just center text, not blocks (it only centers block elements for IE because IE is stupid and non-compliant). To get a block level element centered, use margin-left:auto;margin-right:auto, which you can include in your CSS stylesheet.

camaroboy

6:10 pm on Aug 2, 2007 (gmt 0)

10+ Year Member



Xapti, you are a genius! I pasted that code into the Div CSS codes section and it centered it perfectly! Thank you so much!