Kevinn02
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Change colors: read more button and icon hoverThank you very much!
One more thing: The same thing but then in the services section. The hover of the icon..?
Thanks in advance!
Forum: Themes and Templates
In reply to: [Enigma] Change colors: read more button and icon hoverI know these codes you already gave me…
I mean when I hover the button is going down linear from orange to white. But the text stays white. WHat I want is that the text is also changing linear with the background change. From white to orange, so the opposite colors. As in the demo white to blue text color
I hope you know what I mean?
Thanks in advance!
Forum: Themes and Templates
In reply to: [Enigma] Change colors: read more button and icon hoverThanks! But when I hover it is white on white. How to fix this?
Forum: Themes and Templates
In reply to: [Enigma] Change colors: read more button and icon hoverThanks for your fast reply!
This didn’t work 100%, but it did something. Please take a look at my testsite: https://pdktest.gj-r.nl/seivda/
You can see there is still blue in the read more button and the icons.
How do I change the current/remaining blue colors?Thansk in advance!
Forum: Themes and Templates
In reply to: [AccessPress Lite] Testimonials in footerHi,
I already found it. I have a static page so it is not possible, it is only possible when show latest posts option is on. Or is there another option to fix this when I use static page?
Forum: Themes and Templates
In reply to: [AccessPress Lite] Slider previous/next colorsHey Bojan,
This worked perfectly! Thank you for the good support!
Best regards
Forum: Themes and Templates
In reply to: [AccessPress Lite] Slider previous/next colorsHello,
I put it in my custom css plugin, but also tried to put it in the custom css in the theme options tools (It is now in this theme options custom CSS).
See the (test)website here: https://pdktest.gj-r.nl/decrom/
Forum: Themes and Templates
In reply to: [AccessPress Lite] Slider previous/next colorsHey,
Thanks for your help. I picked controls.png and opened with photoshop and changed the color -> saved it as png and named it: controls2 and uploaded in the same folder. After that added the code (like you said):
.bx-wrapper .bx-prev { background: url(images/controls2.png) no-repeat 0 0; } .bx-wrapper .bx-next { background: url(images/controls2.png) no-repeat right 0; }
But the controls disappeared.. Nothing shows up, also the old controls are not there anymore..
What to do?
Forum: Plugins
In reply to: [Contact Form 7] Multiple / 3 columns in Contact Form 7How do I have to put this in the form editor? I placed it like this in the cf 7 editor and put the css rules in my custom css. But it doesn’t work..
<div class="container"> <div class="column-left"><p>VCA-1<br /> [select* VCA-1 "Nee" "Ja"] </p></div> <div class="column-center"><p>VCA-1 nummer<br /> [text VCA-1Nummer] </p></div> <div class="column-right"><p>VCA-1 geldig tot<br /> [text VCA-1GeldigTot] </p></div> </div>
Forum: Plugins
In reply to: [Customizer for WooCommerce] Remove textOh I already got the solution: just press space..
Forum: Plugins
In reply to: [Multiple content blocks] Where to put codeRemove the code?
Forum: Plugins
In reply to: [Multiple content blocks] Where to put codeThere is not an editor in the admin panel..
You know the reason?Forum: Plugins
In reply to: [Multiple content blocks] Where to put codeI replaced the tag. What should happen now?
Forum: Plugins
In reply to: [Multiple content blocks] Where to put codeNo result..
It looks like this now:<?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); <?php the_block('trigger'); ?> ?>
No extra page edit options..
Forum: Plugins
In reply to: [Multiple content blocks] Where to put code<?php /* Start the Loop */ ?> <?php the_block('trigger'); ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php generate_content_nav( 'nav-below' ); ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> <?php do_action('generate_after_main_content'); ?> </main><!-- #main --> </div><!-- #primary --> <?php do_action('generate_sidebars'); get_footer();