Skip to Content Skip to Menu

CB_Login not wanted

  • krileon
  • krileon
  • ONLINE
  • Posts: 48671
  • Thanks: 8312
  • Karma: 1446
10 years 2 months ago #251941 by krileon
Replied by krileon on topic CB_Login not wanted
If you're on Joomla 2.x you need to set the modules layout to "default_horizontal". If you're on Joomla 3.x you need to set the modules layout to "bootstrap_horizontal". Both layouts are designed to match Joomla login modules HTML output nearly exactly so it should display perfectly fine. At any rate our modules support template overrides now so you could copy the layout to your Joomla template and adjust it as needed so it fits your template design perfectly.


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.
The following user(s) said Thank You: nant

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

  • uberweiss
  • uberweiss
  • OFFLINE
  • Posts: 10
  • Thanks: 0
  • Karma: 1
10 years 2 months ago - 10 years 2 months ago #251983 by uberweiss
Replied by uberweiss on topic CB_Login not wanted
As you can see from the screenshot, it was already set to default horizontal as i was using joomla 2.5


Attachments:
Last edit: 10 years 2 months ago by uberweiss. Reason: screenshot not showing

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

  • krileon
  • krileon
  • ONLINE
  • Posts: 48671
  • Thanks: 8312
  • Karma: 1446
10 years 2 months ago #251984 by krileon
Replied by krileon on topic CB_Login not wanted
It looks like your template is setting the width of the inputs to 100%, the default horizontal has no such CSS and is styled entirely by your Joomla template. Right click the input in Chrome or Firefox then click Inspect Element and see where the 100% width CSS is coming from.

Please see the below of the CB Login default horizontal layout displaying fine on default Joomla 2.x template.




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.
Attachments:

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

  • uberweiss
  • uberweiss
  • OFFLINE
  • Posts: 10
  • Thanks: 0
  • Karma: 1
10 years 2 months ago #252065 by uberweiss
Replied by uberweiss on topic CB_Login not wanted
This is what i got when i inspect element.

<div style="float: right; width:920px; color: black;">
<form action=" www.mysite.com/index.php/en/cb-login/login " method="post" id="login-form" class="cbLoginForm">
<input type="hidden" name="option" value="com_comprofiler">
<input type="hidden" name="view" value="login">
<input type="hidden" name="op2" value="login">
<input type="hidden" name="return" value="B:aHR0cHM6Ly93d3cuZXVyb2dpcm8uY29tL2luZGV4LnBocC9lbi9tZW1iZXItc3RhcnQtcGFnZQ==">
<input type="hidden" name="message" value="0">
<input type="hidden" name="loginfrom" value="loginmodule">
<input type="hidden" name="cbsecuritym3" value="cbm_56791a59_3db68f6d_db158b1a3c3c73434cbaa58851b075a2">
<span class="userdata">
<span id="form-login-username">
<input id="modlgn-username" type="text" name="username" class="inputbox" size="14">
</span>
&nbsp;
<span id="form-login-password">
<input id="modlgn-passwd" type="password" name="passwd" class="inputbox" size="14">
</span>
&nbsp;
<span id="form-login-remember">
Remember Me <input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes" checked="checked">
</span>
&nbsp;
<span class="art-button-wrapper"><span class="art-button-l"> </span><span class="art-button-r"> </span><button type="submit" name="Submit" class="button art-button">
Log in </button></span>
&nbsp;
</span>
</form>

<div align="right"> <form action="/index.php/en/" method="post">
<div class="search">
<label for="mod-search-searchword">Search...</label><input name="searchword" id="mod-search-searchword" maxlength="20" class="inputbox" type="text" size="20" value="search" onblur="if (this.value=='') this.value='search';" onfocus="if (this.value=='search') this.value='';"> <input type="hidden" name="task" value="search">
<input type="hidden" name="option" value="com_search">
<input type="hidden" name="Itemid" value="288">
</div>
</form>

</div></div>

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

  • krileon
  • krileon
  • ONLINE
  • Posts: 48671
  • Thanks: 8312
  • Karma: 1446
10 years 2 months ago #252120 by krileon
Replied by krileon on topic CB_Login not wanted
You need to review the CSS, not the HTML as it's not an inline style doing it. When inspecting the element the developer console should open. You should see the CSS panel on the right inside in the developer console. You'll need to review what CSS is adding a 100% width to the inputs.


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.

  • uberweiss
  • uberweiss
  • OFFLINE
  • Posts: 10
  • Thanks: 0
  • Karma: 1
10 years 2 months ago #252208 by uberweiss
Replied by uberweiss on topic CB_Login not wanted
element.style {
}
Inherited from div
Style Attribute {
float: right;
width: 140px;
color: black;
}
Inherited from div.art-box.art-sheet
www.mysite.com/media="screen "
.art-sheet {
max-width: 970px;
margin-top: 23px;
margin-bottom: -7px;
cursor: auto;
width: 970px;
}
Inherited from div#art-main
www.mysite.com/media="screen "

#art-main {
position: relative;
z-index: 0;
width: 100%;
min-height: 100%;
left: 0;
top: 0;
cursor: default;
overflow: hidden;

from what i can see, then art-main has a width of 100% as the only one.

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

Moderators: beatnantkrileon
Powered by Kunena Forum