MyBB Community Forums

Full Version: - button on thead is in wrong place...?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: idZauq.png]

It's supposed to be on the right side of the thead and not above the category title.

How do I fix this?
css like below used to put that image on right side ...
.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
	margin-top: 3px;
}
(2011-07-21, 03:36 AM)ranjani Wrote: [ -> ]css like below used to put that image on right side ...
.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
	margin-top: 3px;
}

Hm, that didn't seem to change anything.
What's your forum URL?
(2011-07-21, 03:11 PM)faviouz Wrote: [ -> ]What's your forum URL?

http://forumsource.org
You didn't add the bit of CSS ranjani asked you to add. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode. Then add this at the bottom:

.expcolimage {
    float: right;
    width: auto;
    vertical-align: middle;
    margin-top: 3px;
}
(2011-07-21, 06:55 PM)faviouz Wrote: [ -> ]You didn't add the bit of CSS ranjani asked you to add. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode. Then add this at the bottom:

.expcolimage {
    float: right;
    width: auto;
    vertical-align: middle;
    margin-top: 3px;
}

I added it but it didn't do anything so I removed it.

Hold on, I'll add it again in a second.


And now it worked. >.< Thanks guys.