annem5
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sketch] addapt jetpack contact formIm not sure if my php file is correct, but this is what I currently have:
<?php function sketch_child_enqueue_styles() { $parent_style = 'sketch-style'; wp_enqueue_style( $sketch_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $sketch_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'sketch_child_enqueue_styles' ); ?>
But I also use a plugin ‘Easy Google Fonts’ which overrides the css. I use this plugin to change the fonts, but perhaps it is better to remove this one, and make the changes in the child-theme css?
Forum: Themes and Templates
In reply to: [Sketch] addapt jetpack contact formHi,
Thank you for pointing that out. I changed a bit, I hope this is now changed the right way? Maybe you can check for me?
The use of the code for my contact form did work, so that one is solved.
thank you!
Forum: Themes and Templates
In reply to: [Sketch] addapt jetpack contact formHi Kathryn (@zoonini)
this is the page I used for my contact form.
https://bluedewdesign.com/contact/
It is now adapted with the custom css from jetpack (but I would like to use my child css)Forum: Themes and Templates
In reply to: [Sketch] addapt jetpack contact formHi Chad (@shireling),
(i dont know if my message was visible without the @ so i post it twice, just incase)
it is what I mean, thank you. But I have another question. It works in custom css plugin, but I want to make changes in my child theme. When I add to code here, it does not work. How can I use my child theme to make the changes, also with other widget/plugin styles? Or do I have to make another php file maybe?
Forum: Themes and Templates
In reply to: [Sketch] addapt jetpack contact formit is what I mean, thank you. But I have another question. It works in custom css plugin, but I want to make changes in my child theme. When I add to code here, it does not work. How can I use my child theme to make the changes, also with other widget/plugin styles? Or do I have to make another php file maybe?
Forum: Themes and Templates
In reply to: [Sketch] add custom made social icons to footerHi @shireling,
I did, I was a bit too soon to post. I did not think I would figure it out ;). But thank you for your comment. Also helpfull for others ??
Forum: Themes and Templates
In reply to: [Sketch] change color grey lines (or remove them)thank you for the advice, I managed to use the child theme!
Forum: Themes and Templates
In reply to: [Sketch] change color grey lines (or remove them)thank you both! It worked very well. I understand how it works now :).
one question though: is it a disadvantage to use ‘custom css’ next to changes (for other things) in a child theme? or can I use both at the same time..? I for instance changes the colors of my menu via my child theme. But your solutions mentioned above I can only manage through ‘custom css’ in the appearance menu.