By Vlad on Thursday, 04 June 2015
Posted in General Issues
Replies 10
Likes 0
Views 593
Votes 0
Hi As you can see in the attached picture in the Menu layout view
I would like to make some changes:
1. Replace word Tag with another one
2. Remove the tab - circled
3. Increase font size for tag labels.
Thanks a lot
Hello Vlad.

1) You can replace word tag by search this language string COM_EASYBLOG_TAGS_PAGE_HEADING in ...\language\en-GB\en-GB.com_easyblog.ini at line 379

2) You need to delete this code in ...\components\com_easyblog\themes\default\blog.tagcloud.php at line 27 until line 44
		<ul class="reset-ul float-li float-l">
<li class="sorting-item tag-title">
<a href="<?php echo EasyBlogRouter::_( $titleURL );?>"<?php echo $ordering == 'title' || empty( $ordering ) ? ' class="active"' : '';?> rel="nofollow"><?php echo JText::_( 'COM_EASYBLOG_TAGS_ORDER_BY_TITLE' );?></a>
</li>
<li class="sorting-item posts">
<a href="<?php echo EasyBlogRouter::_( $postURL );?>"<?php echo $ordering == 'postcount' ? ' class="active"' : '';?> rel="nofollow"><?php echo JText::_( 'COM_EASYBLOG_TAGS_ORDER_BY_POST_COUNT' );?></a>
</li>
<li class="ordering-item asc">
<a href="<?php echo EasyBlogRouter::_( $ascURL );?>"<?php echo $sorting == 'asc' ? ' class="active"' : '';?> rel="nofollow"><?php echo JText::_( 'COM_EASYBLOG_TAGS_SORT_BY_ASC' );?></a>
</li>
<li class="ordering-item des">
<a href="<?php echo EasyBlogRouter::_( $descURL );?>"<?php echo $sorting == 'desc' ? ' class="active"' : '';?> rel="nofollow"><?php echo JText::_( 'COM_EASYBLOG_TAGS_SORT_BY_DESC' );?></a>
</li>
<li class="tag-search">
<input type="text" id="filter-tags" name="filter-tags" class="ffa fsg fwb" />
</li>
</ul>
</div>


3) Add this css code in your custom.php or template.php file

#eblog-wrapper .post-tags li a {
font-size: 20px;
}


Hope this help
·
Thursday, 04 June 2015 15:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks a lot!
·
Thursday, 04 June 2015 20:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Well, actually for 2, it was line 28 to 43, otherwise the side bar dissapears and all is lined into one column.

BTW where is template.php file?

Thanks

Vlad
·
Thursday, 04 June 2015 20:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi vlad,

You can add that CSS code in your JoomlaFolder/templates/ja_decor/css/custom.css

Regarding with your second question, may i know which part are you mention? Please advise.
·
Thursday, 04 June 2015 23:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Now your reply and answer does not make sense.

1. whats should I add to css? See above answer from Izzam, @ 2) You need to delete this code in ...\components\com_easyblog\themes\default\blog.tagcloud.php at line 27 until line 44@

2. What do you mean which part I mention? I am talking about your advice to change the Font Size in custom.php
·
Friday, 05 June 2015 07:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Vlad.

I am really sorry because point you the wrong line.

Regarding the increase the font size question . You can add this css code in the file that arlex mention (your jommla folder)/templates/ja_decor/css/custom.css

#eblog-wrapper .post-tags li a {
font-size: 20px;
}


Hope this help
·
Friday, 05 June 2015 12:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks IZzan, but no, did not help. Changed font to 30, still same on site.
·
Friday, 05 June 2015 22:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Vlad,

I am really sorry for the delay of this reply as it is a weekend for us here.

I believe that was the cache issues, can you provide us with your Joomla backend and FTP access so we can better have a check?
·
Saturday, 06 June 2015 11:22
·
0 Likes
·
0 Votes
·
0 Comments
·
provided
·
Sunday, 07 June 2015 23:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Vlad.

It seems like you already increase the tags font to 30 pixels. http://screen.stackideas.com/2015-06-08_1151.png

Please advise me if I am wrong
·
Monday, 08 June 2015 11:55
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post