Currently, I am using WordPress along with a premium theme.
I wanted to adjust the size of the navigation bar, so I included the following CSS styles:
li {
float: left;
}
a {
display: block;
width: 60px;
}
After applying these styles, the navigation bar size changed as desired. However, I noticed that it also affected the layout of the post titles, making them look really unattractive.
I am seeking some guidance on how to resolve this issue without compromising the appearance of my post titles.