Reputation: 3661
What I want to do is, to vertically align collapsed blocks on give website:
http://maliyyemenecment.com/?language=en
I tried all possible ways, to align words with bottom side. I mean, constant margin from bottom side. The problem is, can't achieve any good result. Any suggestions?
Thx in advance
Upvotes: 1
Views: 1297
Reputation: 37179
.kwicks.horizontal li .block .collapsed
has a text-align:right;
replace it with text-align: left;
(as the "bottom" is actually the left side of the element) and set a text-indent
(works for me when making this edit in developer tools)
.kwicks.horizontal li .block .collapsed {
text-align: left;
text-indent: 17px;
}
Upvotes: 3