<em>@bollog 231708 wrote:</em><blockquote>Hi everyone,
When small text is being used (like ‘Home’ rather than ‘Home for sale’) as title in JA Tab module of my JA Portfolio template then icon assigned of a tab item appears at frontend in an unexpected/abnormal way. Just 2/3 of it can be displayed and text right next to it is being displayed in first row rather having a nice center alignment. How can this bug get fixed?
Regards,
George</blockquote>
This is coz of the line height
Go to File Path: plugins/content/ja_tabs/themes/portfolio/style.css
Replace the Code
.portfolio .ja-tabs-title-top ul.ja-tabs-title li h3 {
background-color: #CACCCD;
background-position: 15px 15px;
border-top: medium none;
color: #88888A;
font-size: 100%;
font-weight: bold !important;
line-height: normal;
margin: 0;
padding: 15px 15px 10px 55px;
}
With
.portfolio .ja-tabs-title-top ul.ja-tabs-title li h3 {
background-color: #CACCCD;
background-position: 15px 15px;
border-top: medium none;
color: #88888A;
font-size: 100%;
font-weight: bold !important;
line-height: normal;
margin: 0;
padding: 15px 15px 10px 55px;
height:36px;
}
Hope this would fix the issue