Hello
How to display sub footer when you have footer page? As I have 2 languages English and Croatian and using WPML realized that I can’t translate regular footer without creating footer page. But then I don’t have sub footer anymore.
link: https://blog.wor-con.com/
Thank you
Hi,
Currently the sub-footer will not be displayed if a footer page is displayed, maybe this will change in the future. Sorry for the inconvenience.
You can set the widgets in the footer to be displayed per language
– http://prntscr.com/mc31hy
The footer page can be changed per language – https://forum.tagdiv.com/topic/translation-of-footer-pager-does-not-work/
– https://forum.tagdiv.com/topic/using-with-wpml/
Let me know if you have more questions.
Thanks
Could you help me one more thing with css
I would like to display both flags together but now margin is too big. 10px would be great.
So you want the flag icons to be closer together? Maybe like this
– http://prntscr.com/md4zwp
I could modify it if it doesn’t work properly or you wanted something different
.sf-menu .menu-item-wpml-ls-85-hr > a {
padding-right: 5px;
}
.sf-menu .menu-item-wpml-ls-85-en > a {
padding-left: 5px;
margin-right: 18px;
}
Let me know.
hello again,
need your help please. Why transparent pictures have black background?
http://prntscr.com/mibhd8
And why i have black horizontal line below pictures?
Thank you
another thing is that i want to remove some options in filter, like by reviews, random ect.
http://prntscr.com/mibuy4
Hi,
I need to access your website URL so I can take a closer look at it. Now, it seems to be in maintenance mode. You can send us an email with your credentials if you want at contact@tagdiv.com.
Thanks.
You are referring to the zoom effect when the big grid modules are hovered. That effect is specific to big grids, full grids and flex grids only, it is not available for other elements like blocks.
Maybe you could use a flex grid instead of a flex block. I could also give you a code you could try, for example this code will affect flex block 1, when hovered it will zoom the image
.td_flex_block_1 .td-module-thumb span:hover {
transform: scale3d(1.1,1.1,1);
-webkit-transform: scale3d(1.1,1.1,1);
-moz-transform: scale3d(1.1,1.1,1) rotate(.02deg);
transition: all 0.2s ease-in-out;
}
.td_flex_block_1 .td-module-thumb span {
transition: all 0.2s ease-in-out;
}
.td_flex_block_1 .td-image-container {
overflow: hidden;
}
Hi,
You could a code from this topic – https://forum.tagdiv.com/topic/top-bar-in-mobile-menu-is-not-coming/
It should make the top bar visible on mobile, but only if you do not use the mobile theme plugin.
Thanks
Hi,
Seems a more precise code is needed. I believe you want the menu items from the top bar to be displayed, the socials are displayed when the mobile menu is open. Something like this would work – http://prntscr.com/mtf1dj
This is the code for it, I could modify it if needed
@media (max-width: 767px) {
.td-wpml .menu-top-container .top-header-menu>li {
display: inline-block;
}
.td-wpml .menu-top-container {
float: none;
}
.td-wpml .menu-top-container .top-header-menu>li a {
margin-right: 16px;
}}