Hi!
Example page here: https://stevivor.com/reviews/shadow-of-the-colossus-review/
Two requests:
1) How can I reduce the height of my header in desktop view? I’m talking about the blue area around my logo — my logo image is just as high as its text, and there’s a lot of unnecessary padding.
2) I’d like to remove the dotted lines around the subtitle (which I’ve moved underneath the featured image) and also make the text black. How can I do so?
Thanks as always for excellent support!
Hello Stevivor,
If you want to change the color for post subtitle you should use the code below and place it in Theme panel -> Custom CSS area.
.td-post-sub-title {
color:black;
border:0;
}
Also, if you want to change the paragraph to H2, you should edit the theme core file according to your post template used by you. Below I gave you an example of post template style 1. Look at this -> https://www.screencast.com/t/Re43Z9Ad0ndY
Thanks for your understanding!
Thank you! That was super easy to implement! One follow up request, if I may!
Can you advise how to add a blue line in my header at the top of the white area (so between the main header and the top menu, mirroring the blue line that separates the header and the main menu)?
Hello Stevivor,
If you want to add a border below the top menu bar, please check the following code below and place it in Theme panel -> Custom CSS Area.
.td-header-top-menu{
border-bottom:3px solid #6bb0d6;
}
The result is here -> https://www.screencast.com/t/4j5NTVulyQbo
Thanks for your understanding!