center button

Professional Business Joomla template for corporate and business websites suitable for showing stock quotes, up to date news, portfolio management resources or international market data.
GK User
Tue Aug 28, 2012 11:28 am
Hi,

How can I center the blue button? there's no way to "unfloat" it :dry:

http://deportesolidario.com/index.php/carreras?eventId=10&controller=event&task=options&back=1


Thank you
User avatar
Junior Boarder

GK User
Tue Aug 28, 2012 11:44 am
You can use following css in override.css file and enable it in template settings > advanced settings > css override "on".
Button is last div element in div id "dttype_choice" so move it 180px from left.
Code: Select all
#dttype_choice div:last-child {
    margin-left: 180px;
}


See you around...
User avatar
Platinum Boarder

GK User
Tue Aug 28, 2012 12:02 pm
great, but it doesn't work in IE ...
User avatar
Junior Boarder

GK User
Tue Aug 28, 2012 12:51 pm
Because IE does not support last-child selector.

Then you have 2 options. Either edit the php of that component and add an extra class to it so you can use previous "margin-left" css or use jQuery javascript to do it for you.

You might need to use following module to include js script and publish it to your page.

http://extensions.joomla.org/extensions ... dules/5435

Code: Select all
jQuery(function(){
 jQuery("#dttype_choice div:last-child").css("margin-left","180px")
})


See you around...
User avatar
Platinum Boarder


cron