Support

Home Forums Event Espresso Premium Start date on one line.

Start date on one line.

Posted: November 3, 2012 at 5:31 pm


Sydney Smith

November 3, 2012 at 5:31 pm

Hi everyone, I’ve combed the forums and tried all of the suggestions recommended for putting the start date label and start date on one line. The CSS .start_date border {display: none} placed both the start date AND end date on one line. I would like those to remain on separate lines. I also tried replacing the PHP in the registration_page_display.php however it caused my code to go haywire. I’m using the Pagelines template which could be the issue, but at this point I’ve spent about 4 hours trying to fix this one issue. If anyone can help me out, I’d really appreciate it. The registration form is here: http://dickeswood.com/wordpress/event-registration?ee=3

  • This topic was modified 11 years, 5 months ago by  Sydney Smith.


Sydney Smith

November 4, 2012 at 8:21 am

enter code here
  • This reply was modified 11 years, 5 months ago by  Sydney Smith.
  • This reply was modified 11 years, 5 months ago by  Sydney Smith.
  • This reply was modified 11 years, 5 months ago by  Sydney Smith.


Sydney Smith

November 4, 2012 at 8:32 am


Dean

November 5, 2012 at 12:58 am

Hello Sydney,

Firstly it looks like you are having issues posting code. We do limit what code can be posted on the site for security reasons. If you are struggling you can use a service like pastebin.

Regarding your issue, why not use a table? It’s not as flexible as CSS but for this I think it will be perfect.

<table>
<tr>
    <td>
    Date:
    </td>
    <td>
    <?php echo event_date_display($start_date, get_option('date_format')); ?>
    </td>
</tr>
<tr>
    <td>
    </td>
    <td>
    <?php echo event_date_display($end_date, get_option('date_format')); ?>
    </td>
</tr>


Sydney Smith

November 6, 2012 at 7:33 pm

Thanks Dean! I appreciate your help.

The support post ‘Start date on one line.’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso