Forums
-
- Forum
- Posts
-
- Installation
- 28,535
- Troubleshooting
- 62,778
- Themes
- 10,444
- Plugins
- 15,384
- Requests & Feedback
- 14,986
- Showcase
- 3,257
-
That’s in a core file… what have you managed to do in your CSS to make it not go underneath?
Short-term fix:
Put this in your theme’s functions.php
<?php
function add_topic_br_special() { ?>
<br />
<?php }
add_action( 'pre_post_form', 'add_topic_br_special');
?>