inula
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Plugin: List Category PostsAdd a featured image to your post and use: thumbnail=yes
- This reply was modified 5 years, 4 months ago by inula.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Editors cannot reach dashboardForum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Editors cannot reach dashboardYes. Same here on several sites.
Forum: Themes and Templates
In reply to: [GeneratePress] category class in singleThanks again, Tom!
Forum: Plugins
In reply to: [WP Store Locator] Select two of twelve categories on a pageSolution can be fount in: Don’t show categories
Forum: Plugins
In reply to: [WP Store Locator] Don’t show categoriesGreat Tijmen!
Thanks.Forum: Themes and Templates
In reply to: [GeneratePress] Different colorparts in backgroundBest solution is this:
body{overflow-x: hidden;} section { width: 100vw; position: relative; margin-left: -50vw; left: 50%; }
Forum: Themes and Templates
In reply to: [GeneratePress] Different colorparts in backgroundHmmmm, with a grid-container of 1200px, I got a little overflow which I could not hide…
So I now use this CSS:
section { margin-left: calc(-100vw / 2 + 1216px / 2); margin-right: calc(-100vw / 2 + 1216px / 2); }
Forum: Themes and Templates
In reply to: [GeneratePress] Different colorparts in backgroundAh, thanks Tom.
Now I know what I have to look for.Here’s my solution.
CSSsection{ width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; } .rood{background-color:#B5121B; color:#ffffff;}
The section in the page:
<section class="rood"> <div class="grid-container"> Tekst here </div> </section>
Forum: Themes and Templates
In reply to: [GeneratePress] Different colorparts in backgroundHi Leo,
Thanks for your reply.
Just in their own divs doesn’t make the background screenwide ??I’m looking for a simple solution for that.
Forum: Plugins
In reply to: [List category posts] customfields classFound it:
/*
* Select all customfields of the list, including the first one,
* and give them a color.
*/li > .customfields { color: red; }
… then “undo” the styles for elements with the class that come after the first one, using the general sibling combinator ~ in an overriding rule:
/*
* Select all but the first .customclass child of the list element of lcp,
* and remove the color from the previous rule.
*/li > .customfields ~ .customfields { color:#09458F; }
Forum: Plugins
In reply to: [List category posts] customfields classNo one?
I wouldlike to give each of the customfields a different class….Forum: Themes and Templates
In reply to: [GeneratePress] Label search form (title)Problem solved! ??
Forum: Themes and Templates
In reply to: [GeneratePress] Label search form (title)Hi Tom,
Cloned my website, deactivated all plugins, deleted custom functions in functions.php except:
add_action( 'wp', function() { add_filter( 'generate_search_label', function() { return 'Zoeken'; } ); } );
Title/label is still ‘Search for:’
Then I tried the same with:
add_filter( 'generate_search_label', 'tu_change_search_label' ); function tu_change_search_label() { return 'Zoeken'; }
Still the title is ‘Search for:’
Forum: Themes and Templates
In reply to: [GeneratePress] Label search form (title)Thanks for the effort Tom, but that doesn’t change the label/title either.
It must be a conflict somewhere. Don’t you think?Installed plugin Ajax Search Lite.
So let’s leave it to this (eventhough that’s one of the hardest things to do…)