Plugin Author
tuxlog
(@tuxlog)
Can you give me a live URL where I can see this problem please?
Hi tuxlog,
Please find my current test URL below.
Note: Its in dutch, but if you click on “Activiteiten” on the top, you should be able to see the alignment to the right.
I’ve placed a couple updates so it shows what I mean.
URL: http://demo.sectionsix.org/activiteiten/
Thanks!
Please feel free to create an account on the site, I’ll grant you admin rights so you may check the back-end if needed.
Plugin Author
tuxlog
(@tuxlog)
As far as I can see it would help to
1. Copy wp-monalisa-default.css to wp-monalisa.css
This is to prevent changes from being ovewritten on updates
2. Change the wpml_ico css rule from
img.wpml_ico {
 border-spacing: 2px;
 border-collapse: collapse;
 margin-left: auto;
 margin-right: auto;
}
to
img.wpml_ico {
 border-spacing: 2px;
 border-collapse: collapse;
 float: left;
}
and to change
#buddypress .activity-list .activity-content .activity-inner>p>img {
margin-top: 10px;
margin-right: 10px;
/* clear: both; */
display: block;
in main-global.css of your BuffyPress Theme. Just commenting the clear:both.
It looks muchz better then.
Hey!
Just made the amendments you suggested, the first in the wp-monalisa.css, which has now caused the emotes to allign to the left, perfect!
The second amendment does not appear to do much, i’ve placed it in both my child themes .css and directly into the parent themes .css, but no difference shows.
Am I doing something wrong? 🙂
Plugin Author
tuxlog
(@tuxlog)
Just visited your site again and the smilies are aligned left and side by side. Seems it works now. Correct?
They are not showing side by side for me – i’ve tried to include them in an activity update, but it still cuts of and places the text on a line below.
Plugin Author
tuxlog
(@tuxlog)
In your css there is this:
/* style for icon */
img.wpml_ico {
 border-spacing: 2px;
 border-collapse: collapse;
 float: left;
}
since this is not valid css all those rules are ignored.
In main-global.css on line 5049
#buddypress .activity-list .activity-content .activity-inner>p>img {
margin-top: 10px;
margin-right: 10px;
/* clear: both; */
display: block;
}
Please comment the clear:both.
I just tested it and it worked.