To change the internal URL color on blog posts using Blogger Template Designer follow the steps below.
Step-by-Step Guide:
1. Login to your Blogger account and access the dashboard.
2. Click on the Theme option and then click on the Customize button. This will take you to the Blogger Template Designer where you can make advanced changes to your blog's design.
3. Go to the "Advanced" tab and click on the "Add CSS" option. This will open a text box where you can enter the custom CSS code to change the internal URL color.
4. Copy or paste the following code into the text box:
.post-body a{
color: red !important;
}
.post-body a:hover{
color: default !important;
}
.post-body a:visited{
color: default !important;
}
Note: You can change the color code from red to any color of your choice.
5. Click on the "Apply" button to save your changes.