I have setup the home page, applied the block13 for 3 categories,but I found the links of two categories can’t work today ,but they work well on desktop.
I don’t know what happened.
My website is :https://eaglevisiontimes.com
And the categories are Travel and Tradition & Classical.
Can anybody help me?
Thanks.
Hello June,
I have inspected your website and I suppose that you are referring to the following block which has been structured by 3 categories, like this -> https://www.screencast.com/t/rlCXbKEyei! Right? Also, I have noticed that the block title does not have any link? Unfortunately, I do not exactly understand what do you mean regarding on links?
Provide more details so I will be able to provide a more accurate response.
Thanks for the message!
Hi,
The block titles can have links set to them like this
– https://www.screencast.com/t/LEVXPiE6Eu7
The block pagination should not influence the links set to the block titles, if that is what you mean.
More information about the available block settings here
– https://forum.tagdiv.com/block-settings-guide/
Thanks
Sorry,I have summit the mail but it can sent successfully.
https://eaglevisiontimes.com/category/china/
I mean the part of the category:
”
Home > China
CHINA
Business China Classical Hot Topic Live story NZ & AUZ Travel Videos World Focus未分类
Know what happened in China, explore the truth behind the wall.
”
Thanks.
Hi,
If you were to remove the entire category header, the category page will look like this
– https://www.screencast.com/t/Ll3jPhcK2I7
Use this code if that is the result you need, and also maybe set some padding at the top of the grid (you can change the value for the padding if you want)
– https://www.screencast.com/t/w5jhWgMZ
.category .td-category-header {
display:none;
}
.category .td-category-grid {
padding-top: 23px;
}
The arrow in the menu indicates that the menu item is a mega-menu, or it is a drop-down menu. You could remove it for all the menu items with a code like this
– https://www.screencast.com/t/DyZbm1CQnK
#td-header-menu .td-icon-menu-down {
display: none;
}
These codes must be entered in Theme panel->Custom CSS if you decide to use them.
Thanks
Thank u so much!It’s so kind of you!I will apply for the another website.
By the way,would you tell me how I can change the spacing between each letter in the same word in menu?I hope to set more categories to the menu but the width isn’t enough.
And do you mind telling me if I can change the style of the icons for next&prev ( “<” and “>” )paginations?
Hi,
The font proprieties for the header menu can be changed in he theme panel
– https://www.screencast.com/t/LZvDmLohFCp
You could reduce the padding between the menu items. The default is 31px
– https://www.screencast.com/t/dQjnK9Vy2
Try a code like this one for example (you can modify the value as you wish)
– https://www.screencast.com/t/1Cyhn9zlc
#td-header-menu .sf-menu a.sf-with-ul{
padding-right: 15px;
}
There is no option to change the pagination that is present in the menu. If you would like to style it further, you could use the browser inspector and create custom code
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks