I have moved the secondary menu down from the top bar to the main header using CSS. The problem that I have is that “Phone-Info” text is not aligning to the right – it leaves the space on the right as if the secondary menu is still there.
How do I move phone-info text so it’s completely right-aligned?
Thank you!
Hi!
In style.css, change this:
.sub_menu {
top: 60px !important;
}
To this:
.sub_menu {
top: 60px !important;
position: absolute;
right: 45px;
}
Regards,
Josue
