Skip to Content Skip to Menu

🎃 Happy Halloween! Treat yourself with an awesome discount on memberships! Get 20% off now with code SPOOKY-2024!

hello, step by step how do i align the reg layout to the middle of the reg section..

  • krileon
  • krileon
  • ONLINE
  • Posts: 48459
  • Thanks: 8280
  • Karma: 1443
11 years 7 months ago #222929 by krileon
The URL is needed, because you're not using the default Joomla template or you've a CSS conflict causing it to display incorrectly. The only way for me to review the CSS and suggest any changes specific to your site is with the URL. Please PM the registration URL where this issue is present and will take a look.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48459
  • Thanks: 8280
  • Karma: 1443
11 years 7 months ago #222932 by krileon
You can push the form to the center by adding some padding to it. For example the below moves it to center relative to its display width.
Code:
.cbRegistration > .cb_form { padding-left: 25%; padding-right: 25%; }

The registration page has nothing to do with your modules overlapping their borders though and this is happening on all of your sites pages. The below will force limitations on the module table displays (you should avoid table layouts and use DIV based) as well as fix the CB login module from overflowing. I've also included some CSS to fix your change module from overflowing, but you should contact the developer of it as its width isn't dynamic (it's static with absolute positioning).
Code:
.maincontent .moduletable, .maincontent .moduletable > tbody, .maincontent .moduletable > tbody > tr, .maincontent .moduletable > tbody > tr > td, .maincontent .moduletable > tbody > tr > th { padding: 0; margin: 0; display: block; width: 100%; } .cbLoginForm #mod_login_username, .cbLoginForm #mod_login_password { display: block; width: 90%; } .maincontent .moduletable #fastcatchatentry, .maincontent .moduletable .fc_controlbox { width: 100px !important; height: auto !important; position: relative !important; }

Please understand I can not help you any further with your design issues as none of these are the cause of CB except for the login module, which is normal input behavior (your display width is too small for the inputs). If you should have any further design issues please contact the developer of your template or a web designer to assist with your design issues.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • CloudySky
  • CloudySky
  • OFFLINE
  • Posts: 65
  • Thanks: 1
  • Karma: -7
11 years 7 months ago #222939 by CloudySky
not to rush you or anything, but are you working on it, need to get this squared away

Please Log in or Create an account to join the conversation.

  • CloudySky
  • CloudySky
  • OFFLINE
  • Posts: 65
  • Thanks: 1
  • Karma: -7
11 years 7 months ago #222941 by CloudySky
my bad just saw your post....what files am i editing for this...

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48459
  • Thanks: 8280
  • Karma: 1443
11 years 7 months ago #222943 by krileon
Normally you add custom CSS to the bottom of your Joomla template CSS file as it's least likely to change often. So either that or whatever CSS file you like that loads on those pages.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • CloudySky
  • CloudySky
  • OFFLINE
  • Posts: 65
  • Thanks: 1
  • Karma: -7
11 years 7 months ago #222951 by CloudySky
put this at the bottom of the template css?


.cbRegistration > .cb_form {
padding-left: 25%;
padding-right: 25%;
}

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum