To add or override CSS: use the “Additional CSS” option in the customizer. https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress or at [site]/wp-admin/customize.php if you don’t have that menu option.
Use the Chrome Developer Tools or Firefox Developer Tools to help you see and test changes to your CSS.
Hi,
I know that, but once I go to customize page disappears and only the shortcode appears, and whatever I write in additional css section doesn’t affect the page.
lisa
(@contentiskey)
if the details displayed on the login page are managed by a specific plugin, the plugin’s support team might have guidance to offer to change the display. which school management plugin are you using?
It’s Weblizar’s School Management System
lisa
(@contentiskey)
looks like this is the email for Support : support@weblizar.com
link to documentation: https://weblizar.com/documentation/
Hi @aleksalol1!
I visited your website and of-course you can use custom CSS to style your page as you wish. Here is a code which I tried out on your website.
.page-id-77 .page-content {
display: flex;
justify-content: center;
}
#wlsm-login-form .input {
padding: 10px 30px;
background-color: aliceblue;
}
#wlsm-login-form label {
color: red;
font-size: 18px;
}
input#wlsm-login-submit {
font-size: 17px;
color: red;
padding: 5px;
}
form#wlsm-login-form {
margin-top: 50px;
}
You can make necessary changes according to your preferences.
Also I am attaching a link to a guide which you can follow in regards to adding custom CSS: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
Thanks!
Hi @praveenrai ,
Thank you so much, this solves all of my problems haha. Thank you again! Cheers!