Chinthaka_Intense
Member
Posted 1 year ago #
Hi,
In the Archives when the 'continue reading' appears, is there a way to have it on 1 line instead of it breaking in to the next line?
Please see the bottom of page (last post):
http://intensemedia.biz/blog/?m=201007
Any help is greatly appreciated!
Thanks!
Try adding:
.entry-summary a {
display:block;
white-space:no-wrap;
}
to your stylesheet.
Chinthaka_Intense
Member
Posted 1 year ago #
Thanks for the reply!
I added the code & it appears like this :
http://intensemedia.biz/blog/?m=201007
Any way to fix this?
Thanks!
Chinthaka_Intense
Member
Posted 1 year ago #
Since it's like that, I tried adding
display:inline-block;
But the height is still a problem. (It's supposed to be 17px but it's more now)
Chinthaka_Intense
Member
Posted 1 year ago #
I can set the height
height:17px;
then the text is not aligned to the middle, even though I have used
vertical-align:middle;
This is how it looks now: http://intensemedia.biz/blog/?m=201007
Your help is greatly appreciated!
Try:
.entry-summary a {
display:block;
white-space:no-wrap;
width:12em;
}