$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>pages - Edit the text location of a form|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

pages - Edit the text location of a form

matteradmin10PV0评论

I was hoping someone might be able to help with something i imagine is very simple. I've created a form and added it to a page, however the text appears to be aligned to the left and the entry box to the center, leaving a large gap in between the two. How would i get the text to sit near to the entry box?(I've attached a screenshot as an example).

I was hoping someone might be able to help with something i imagine is very simple. I've created a form and added it to a page, however the text appears to be aligned to the left and the entry box to the center, leaving a large gap in between the two. How would i get the text to sit near to the entry box?(I've attached a screenshot as an example).

Share Improve this question asked Mar 14, 2019 at 12:25 Joe SaundersJoe Saunders 1 2
  • This is a css issue you're having. You would need to include the css rules for the affected form. You would need to know if the form is in a table it using div. Also if the left column is fine width, etc. – Howard E Commented Mar 14, 2019 at 12:47
  • Share code that generated the form. – Qaisar Feroz Commented Mar 14, 2019 at 14:41
Add a comment  | 

1 Answer 1

Reset to default -1

Inspect the text in your browser by right clicking it and picking Inspect. This should open up a window where you can adjust the CSS for all the elements on the page. You will need to play around with what needs changed.

Once you figured out what needs to change, you can copy the new styles into the admin. Go to Admin > Appearance > Customize > Additional CSS, paste your new styles in the textbox and publish the changes.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far