We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 27519
    • 275 Posts
    Is it possible to center the title of a MODx.Panel, and if so, how?

    Thanks.
      MODx Revolution / MAMP / OS X
      • 1778
      • 659 Posts
      Hello


      Cispeo.panel.Home = function(config) {
      config = config || {};
      Ext.apply(config, {
      border: false,
      baseCls: ’modx-formpanel’,
      items: [{
      html: ’<h2>’+_(’cispeo’)+’</h2><p>’+_(’cispeo.welcome_msg’)+’</p>
      ’,
      border: false,
      baseCls: ’modx-page-header’,
      style: ’text-align: center;’ //<-- USING style attribute you can apply every CSS you want
      },{
      etc...

      Cheers
        • 27519
        • 275 Posts
        Excellent! Thanks!!
          MODx Revolution / MAMP / OS X