@peterdroginformation-nu: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
1. To be able to change the size and position of the title.
.site-title {
font-size: 40px;
}
2. To be able to change the size and position of the slogan β which are under the title.
.site-description {
font-size: 20px;
}
Where do you want to put the title (position)
3. To be able to change the contrast colour, which are in Read more⦠Hover of the title, Hover of the menu etc.
/* Site Title Hover color */
.site-title a:hover {
color: #ff00ff;
}
/* Menu Hover color */
.lucida-nav-menu a:hover,
.lucida-nav-menu a:focus {
color: #ff00ff;
}
/* Read more / links Hover color */
a:hover,
a:focus,
a:active {
color: #ff00ff;
}
Regards,
Mahesh