Plugin Author
ILLID
(@mihail-barinov)
Hello,
The best way to put your customm css is to use Customizer tool. So just open Appearance -> Customize -> Additional CSS and add all your custom css inside the box.
Regards
Thread Starter
pandap0p
(@willoughbyltd)
Thank you – that makes sense! Would you be able to help me with the CSS code to do that? I’ve tried it with the below and it doesn’t seem to work.
.aws-search-result {
font-size: 13px;
font-family: Poppins;
font-style:black
}
Thanks again for your help 🙂
-
This reply was modified 5 years, 6 months ago by
pandap0p.
Plugin Author
ILLID
(@mihail-barinov)
Please use styles like that
.aws-search-result .aws_result_title,
.aws-search-result .aws_result_excerpt {
font-size: 13px;
font: 'Poppins';
color:black;
}
Thread Starter
pandap0p
(@willoughbyltd)
Unfortunately it doesn’t seem to have worked 🙁 I’m trying to change this bit too:
View post on imgur.com
Thank you!
Plugin Author
ILLID
(@mihail-barinov)
So if you want to change placeholder text styles please use
.aws-container .aws-search-field {
font-size: 13px;
font: 'Poppins';
}
.aws-container .aws-search-field::-webkit-input-placeholder {
color:#000;
}
Thread Starter
pandap0p
(@willoughbyltd)
Thanks! It still doesn’t quite seem to be working. The text is still a different font however in places it is black. This is the CSS code I’m using:
.aws-search-result .aws_result_title,
.aws-search-result .aws_result_excerpt {
font-size:17px;
font:'Poppins';
color:black;
}
.aws-container .aws-search-field {
font-size:17px;
font:'Poppins';
color:black
}
.aws-container .aws-search-field::-webkit-input-placeholder {
color:black;
}
Perhaps it’s just a problem with my site?
Plugin Author
ILLID
(@mihail-barinov)
Can you give me the link to the page where the search form with these styles are now placed?
Thread Starter
pandap0p
(@willoughbyltd)
Sure thing – it’s on the yellow menu:
https://simoncookeinteriors.co.uk/shop
Thanks!
-
This reply was modified 5 years, 5 months ago by
pandap0p.
Plugin Author
ILLID
(@mihail-barinov)
Looks like I understand. Please update styles to
.aws-search-result .aws_result_title,
.aws-search-result .aws_result_excerpt {
font-size: 17px !important;
font-family: 'Poppins' !important;
color: black !important;
}
.aws-container .aws-search-field {
font-size: 17px !important;
font-family: 'Poppins' !important;
color: black !important;
}
.aws-container .aws-search-field::-webkit-input-placeholder {
color:black !important;
}
Thread Starter
pandap0p
(@willoughbyltd)
That’s great, thank you so much for all your help 🙂