Hi,
If I give a searchtask in the searchbox I see this result: http://postimg.org/image/407hx2e5t/
Any idea what happend here?
Hi,
I have checked your site and did not found any issues, please clear cache maybe it is a caching issue.
Thanks!
Hi Alin,
Thanks, the problem is fixed (bug EventOn plugin).
I also would like to disable some modules at the frontpage for mobile users.
I set-up this custom css fof mobile device: http://postimg.org/image/d3ag8colj/
But Block 13 (natuur in Amsterdam) and textblock (Winkelen in Amsterdam) are still vissible, how can I de-activate the 2 blocks for mobile device?
There is also a lot of empty space at mobile if you scroll down.
http://mobiletest.me/iphone_5_emulator/?u=http://amsterdam-online.nl/
How can I delete the “more from this Author” option?
There is only 1 author.
http://postimg.org/image/rw0iul6jn/
I also would change the titleblock lines to dotted and change the color http://postimg.org/image/uy310l37r/.
Can you explain me where to change that?
-
This reply was modified 11 years by
Justrelaxed.
And how can I change the backgroundcolor of the “Load more” button?
http://nl.tinypic.com/r/2u8i49h/8
Hi,
1. You can try this css: http://screencast.com/t/1nUURCXMDGC
@media (max-width: 767px) {
.td_block_13, .blok6, .vc_wp_posts , .td_block_14{
display: none;
}
}
2. For the more author box try this one:
.td_block_related_posts .td-related-right {
display: none;
}
For borders try this: http://screencast.com/t/Yyg1owk2PI1x
.block-title {
border-color: #000;
border-bottom-style: dotted;
}
3. Try this:
.td-load-more-wrap a:hover {
background-color: #ff3e9f;
}
Thanks
Hi Lucian,
Thanks for the help.
Only point 3 does not work.
I see no change by the “load more button” at frontpase if I add the custom css.
.td-load-more-wrap a:hover {
background-color: #222222;
}
Thanks,
Only the dashed border is not vissible at the standard WP latest articles module at frontpage.
Which cdd code do I have to use to process that?
I also would like to decrease the spacing between the latest posts module.
Hi,
Use it like this: http://screencast.com/t/vKBOpJmIC
.td-load-more-wrap a {
background-color: #ff3e9f;
color: #fff;
}
For the widget try this: http://screencast.com/t/EDiMVHiwa
.widgettitle:after {
background-color: #ff3e9f;
border-bottom-style: dashed;
border-width: 2px;
}
and for spacing this one: http://screencast.com/t/IEiukLm00V5W
.widget_recent_entries li {
margin-bottom: 0px;
}
Thanks