EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: ejzhang on July 09, 2014, 06:32:41 PM



Title: Howto change font-size of accordion?
Post by: ejzhang on July 09, 2014, 06:32:41 PM
I add style="font-size:2em" to accordion but not effect.
the link-button isn't effect yet.


Title: Re: Howto change font-size of accordion?
Post by: stworthy on July 09, 2014, 10:45:01 PM
Try the code below to change the text font size for a linkbutton.
Code:
<a href="#" class="easyui-linkbutton"><span style="font-size:2em">LinkButton</span></a>


Title: Re: Howto change font-size of accordion?
Post by: ejzhang on July 10, 2014, 07:27:19 PM
Thank you fisrt! But howto change font-size for title of accordion? Just like this.
Code:
<div class="easyui-accordion" fit="true" border="false">
<div title="Folder1" style="overflow:auto;padding:10px;">
<a href="javascript:openFile(1);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File1</a>
<a href="javascript:openFile(2);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File2</a>
<a href="javascript:openFile(3);" class="easyui-linkbutton" plain="true" iconCls="icon-folder">File3</a>
</div>
</div>


Title: Re: Howto change font-size of accordion?
Post by: stworthy on July 10, 2014, 07:56:57 PM
Please try this code:
Code:
<div class="easyui-accordion" fit="true" border="false">
<div title="<span style='font-size:2em'>Folder1</span>" style="overflow:auto;padding:10px;">

</div>
</div>


Title: Re: Howto change font-size of accordion?
Post by: ejzhang on July 10, 2014, 08:32:56 PM
Thanks again! It's effected, but the title overflow from display area.
(http://t1.qpic.cn/mblogpic/52f12ff3c7a3e1788dcc/2000.jpg)