Thank you as always that was amazing .. but i want to suggest one thing that you should share these css codes in discription or on your website which you use in your tutorials it will be very helpfull and easy for beginner's.. Because some codes you use if we do lil mistake it doesn't work I Hope you will share it Thank you
Thanks for watching to the end 🙂. I really got a lot out of the free codeacademy courses early on. They're interactive so you get to try the code live and you have to make it work before going to the next lesson. It's much more fun than reading a book or watching a long video lesson. Highly recommended.
@@BuildThatWebsite Thank you for replying. Yes. There are two for now, which I shall request you in a few days. Question Related to this video: Can we put our own ".com" domain name if we host the site locally as you have so well demonstrated?
If you mean, can you host a live site on your local machine by connecting a real domain name to LocalWP, the answer is no. You can, however, set a custom domain name while working on your local machine when creating new sites in LocalWP.
So this works to a degree on my site, I can get the font to change color via the CSS but when I publish the changes, it reverts back. What am I missing here?
Are you using a cache plugin like WP-Rocket, Autoptimize, etc? It sounds like a caching issue. If so, clear the cache & regenerate critical CSS if applicable. Also, if using chrome, hit f12 to open developer tools, go to the 'network' tab, the the 'disable cache' box and try reloading the page. If this last test works, it's because your browser is caching the old version.
Great video my friend I have a question that maybe you can help me with, I'm sure it is easy to fix but I have no coding skills and trying to fix it with plugins and themes and customizations has been a real shit. Where can I adress my question? Maybe you can help me with it or maybe you can make a video with the solution. Thank you for the great tutorials and help always.
Hi. But won't this css method change the font colour of all the posts? What if I want to change the font colour of a single h1 entry title only? Could you also please let me know how to change the font colour of meta elements like author name, date, etc, which are directly below h1 entry title?
If you put the CSS in your global stylesheet it will affect all the styles on all pages. To target one individual page the easiest method is to use inline CSS. Just add an HTML block to the page and paste the CSS inside tags. To target the post meta, you'll need the correct CSS selectors to target. Then you can write CSS rules to change color, font-size etc. If you need help finding the right CSS selector, check out my Chrome Inspector video: ruclips.net/video/151NXMk0a2c/видео.html
@@BuildThatWebsite thank you so much. That clarifies a lot of things. If you could help further, could you pls let me know how to add HTML blocks to certain pages? Can I include CSS changes for meta elements and H1 title on the same block? A step-by-step guide would be helpful.
I am new to CSS, and my code didn't work. Is the following wrong? h2.elementor-heading-title { font-weight: bold; } Thanks in advance. I must be the only person who couldn't get this to work. Oh, I am using Roboto.
It's hard to know without seeing your site, but even if your code is correct it might be overrulled by another rule with more specificity. You'd have to use your browser's inspector to see what rule is being applied.
If you're using hello theme, I'm assuming your site is designed with Elementor. You can just use Elementor global styles to make the changes visually. No need for CSS
It worked! It actually worked!! You are a legend, kind sir!
So simple - thanks for helping us newbies!!!
This was so helpful! I had been searching everywhere how to change and it worked like a charm. Thank you!
A very crisp and nice video. Resolved my issue.👌👌👌
Thank you for sharing this valuable information.
Thank you as always that was amazing .. but i want to suggest one thing that you should share these css codes in discription or on your website which you use in your tutorials it will be very helpfull and easy for beginner's..
Because some codes you use if we do lil mistake it doesn't work
I Hope you will share it Thank you
Thanks for the reminder. I built a section on my site for this but haven't added a post for this video yet. I'll try to get it up today or tomorrow.
@@BuildThatWebsite thanks allot
Hi, can I change the headtitle position on a specific post?
Thank you for the recommendations at the end there.
Thanks for watching to the end 🙂.
I really got a lot out of the free codeacademy courses early on. They're interactive so you get to try the code live and you have to make it work before going to the next lesson. It's much more fun than reading a book or watching a long video lesson. Highly recommended.
You made my day. Thank you!
Thank you bro! this is what I was looking for and I have subscribed to your channel.
Glad to hear it! Let me know if you have a suggestion for a future video to help you on your WordPress journey.
@@BuildThatWebsite Thank you for replying. Yes. There are two for now, which I shall request you in a few days. Question Related to this video: Can we put our own ".com" domain name if we host the site locally as you have so well demonstrated?
If you mean, can you host a live site on your local machine by connecting a real domain name to LocalWP, the answer is no.
You can, however, set a custom domain name while working on your local machine when creating new sites in LocalWP.
Thanks man really appreciated
Thank you
thanks for your help!
love from India
So this works to a degree on my site, I can get the font to change color via the CSS but when I publish the changes, it reverts back. What am I missing here?
Are you using a cache plugin like WP-Rocket, Autoptimize, etc? It sounds like a caching issue. If so, clear the cache & regenerate critical CSS if applicable.
Also, if using chrome, hit f12 to open developer tools, go to the 'network' tab, the the 'disable cache' box and try reloading the page. If this last test works, it's because your browser is caching the old version.
i want to change font for every post
is it possible...??
if yes then how...??
Sure, just use the 'additional css' section of the Wordpress customizer which will load your css on every page.
I'll try this out
Hello I tried this for hours and it shows on my website OK but does not show on my iphone or the internet only on my computer so what is this?
the problem is i input the css it doesnt work, even though i do it correctly, is it because of some other code on my website, im not sure.
Do you want to share a live URL? I'll look
Great video my friend
I have a question that maybe you can help me with, I'm sure it is easy to fix but I have no coding skills and trying to fix it with plugins and themes and customizations has been a real shit.
Where can I adress my question? Maybe you can help me with it or maybe you can make a video with the solution.
Thank you for the great tutorials and help always.
Can just ask the question here if you like.
tnx bro
Solved my problem.
So when i click appearance > colours the only option that comes up in background colour. :(
You can always use the CSS method for full control, regardless of your theme settings.
Hi. But won't this css method change the font colour of all the posts? What if I want to change the font colour of a single h1 entry title only? Could you also please let me know how to change the font colour of meta elements like author name, date, etc, which are directly below h1 entry title?
That's exactly what I'm wondering too. I hope he can answer this 👌
If you put the CSS in your global stylesheet it will affect all the styles on all pages. To target one individual page the easiest method is to use inline CSS. Just add an HTML block to the page and paste the CSS inside tags.
To target the post meta, you'll need the correct CSS selectors to target. Then you can write CSS rules to change color, font-size etc. If you need help finding the right CSS selector, check out my Chrome Inspector video:
ruclips.net/video/151NXMk0a2c/видео.html
@@BuildThatWebsite thank you so much. That clarifies a lot of things. If you could help further, could you pls let me know how to add HTML blocks to certain pages? Can I include CSS changes for meta elements and H1 title on the same block? A step-by-step guide would be helpful.
how to make title fort size change to mobile
what if it's a hex color code?
It's the same syntax. Just use a pound sign in front of the hex code (e.g. color: #efefef; )
I am new to CSS, and my code didn't work. Is the following wrong?
h2.elementor-heading-title {
font-weight: bold;
}
Thanks in advance. I must be the only person who couldn't get this to work.
Oh, I am using Roboto.
It's hard to know without seeing your site, but even if your code is correct it might be overrulled by another rule with more specificity. You'd have to use your browser's inspector to see what rule is being applied.
@@BuildThatWebsite Thank you! I'm using the Hello theme. I'll see if I can work out how to do what you suggested.
If you're using hello theme, I'm assuming your site is designed with Elementor. You can just use Elementor global styles to make the changes visually. No need for CSS
@@BuildThatWebsite Thank you! I've been using Elementor for seven years, and I'm still such a nuub.