Please help, My contacts are lined up wrong, they are at an angle. see below
|
A guess would be that you have made changes to the css Geeks, making the world a better place |
How would I get it to line up right and what would be the file?
Thank you!
|
If you are using a custom template, then contact the person that created the template.
We would need access to the site and for you to turn off css caching to try and track down the issue.
Geeks, making the world a better place |
If you are using a custom template, then contact the person that created the template.
We would need access to the site and for you to turn off css caching to try and track down the issue.
I tried using the standard UNI template and it still shows the same, below is the custom template of my problem:

Thank you!
|
Have you recently upgrade dolphin?
What version are you running?
It resembles a css issue that existed in one of the eariler versions of dolphin. https://www.deanbassett.com |
Have you recently upgrade dolphin?
What version are you running?
It resembles a css issue that existed in one of the eariler versions of dolphin.
I downloaded and installed a new version 7.1.4
|
The contacts block is normally not in a column that wide.
So i tested on my site to see if there was a problem with the contacts on a wide block. There is a problem.
However, mine are not at a angle like yours. Mine are perfectly aligned in a single row.
Are they still at a angle for you in the default UNI template?
https://www.deanbassett.com |
The contacts block is normally not in a column that wide.
So i tested on my site to see if there was a problem with the contacts on a wide block. There is a problem.
However, mine are not at a angle like yours. Mine are perfectly aligned in a single row.
Are they still at a angle for you in the default UNI template?
I was able to line them up from top to bottom by changing the templates/base/css/mail.css in:
/*-- Contacts block --*/
div.contacts_container {}
div.sys-mailbox-contact {
position: relative;
height: 100px;
This was in line 201 for me it was height: 64px; and I changed it to height: 100px;
But now if you have 100 contacts then 100 will show at once, I would like a option to show a certain amount at a time like people search and a contact search option like people search. Any ideas?
Thank you!
|
Settings per page is a seperate issue that i do not have a solution to. It will require code changes to do it.
I have a fix for the other problem. First restore your changed css files. This fix will not work if you have altered them.
Next edit templates\base\mail_box_contacts_list.html
Replace this.
<div class="contacts_container"> <bx_repeat:members> <div class="sys-mailbox-contact bx-def-margin-sec-top"> <div class="sys-mbc-author"> __member_icon__ </div> <div class="sys-mbc-info"> <div class="sys-mbc-author-info"> <a href="__member_location__">__member_nick_name__</a> <br /> </div> <div class="sys-mbc-actions"> <button class="bx-btn bx-btn-small" onclick="window.open('<bx_url_root />__current_page__?mode=compose&recipient_id=__member_id__','_self');"> <bx_text:_Compose /> </button> </div> </div> </div> </bx_repeat:members> </div>
With this. The changes are marked in red.
<div class="contacts_container"> <bx_repeat:members> <div class="sys-mailbox-contact bx-def-margin-sec-top" style="width: 210px; margin-top: 10px; float: left;"> <div class="sys-mbc-author"> __member_icon__ </div> <div class="sys-mbc-info"> <div class="sys-mbc-author-info"> <a href="__member_location__">__member_nick_name__</a> <br /> </div> <div class="sys-mbc-actions"> <button class="bx-btn bx-btn-small" onclick="window.open('<bx_url_root />__current_page__?mode=compose&recipient_id=__member_id__','_self');"> <bx_text:_Compose /> </button> </div> </div> </div> </bx_repeat:members> <div class="clear_both"></div> </div> https://www.deanbassett.com |
Settings per page is a seperate issue that i do not have a solution to. It will require code changes to do it.
I have a fix for the other problem. First restore your changed css files. This fix will not work if you have altered them.
Next edit templates\base\mail_box_contacts_list.html
Replace this.
<div class="contacts_container"> <bx_repeat:members> <div class="sys-mailbox-contact bx-def-margin-sec-top"> <div class="sys-mbc-author"> __member_icon__ </div> <div class="sys-mbc-info"> <div class="sys-mbc-author-info"> <a href="__member_location__">__member_nick_name__</a> <br /> </div> <div class="sys-mbc-actions"> <button class="bx-btn bx-btn-small" onclick="window.open('<bx_url_root />__current_page__?mode=compose&recipient_id=__member_id__','_self');"> <bx_text:_Compose /> </button> </div> </div> </div> </bx_repeat:members> </div>
With this. The changes are marked in red.
<div class="contacts_container"> <bx_repeat:members> <div class="sys-mailbox-contact bx-def-margin-sec-top" style="width: 210px; margin-top: 10px; float: left;"> <div class="sys-mbc-author"> __member_icon__ </div> <div class="sys-mbc-info"> <div class="sys-mbc-author-info"> <a href="__member_location__">__member_nick_name__</a> <br /> </div> <div class="sys-mbc-actions"> <button class="bx-btn bx-btn-small" onclick="window.open('<bx_url_root />__current_page__?mode=compose&recipient_id=__member_id__','_self');"> <bx_text:_Compose /> </button> </div> </div> </div> </bx_repeat:members> <div class="clear_both"></div> </div>
Once again you saved the day!
Thank you!
|