Hi guys. Thank you, as always for your help.
I have enable a topbar to have a phone number and email address included on the top of the site. I would like the email address on the left and the phone number on the right.
I have followed a previous thread that got me pretty far, apart from the two are superimposed on each other on the right hand side. Could you suggest the coding to have one on each side?
CURRENTLY - in Custom CSS in Customiser
.x-topbar .x-social-global {
display: none;
}
.x-topbar .p-info a {
color: #fff !important;
font-size: 16px;
position:absolute;
right: 20px;
text-align:right;
color:blue;
}
.x-topbar .p-info a>span {
font-size:25px;
color:white;
}
.x-topbar {
background: rgb(34, 34, 34) !important;
}
@media screen and (max-width: 767px) {
.x-topbar .p-info a {
font-size: 20px !important;
position: relative !important;
right: auto !important;
float: right;
margin-bottom: 15px;
}
}
@media screen and (max-width: 480px) {
.x-topbar .p-info a {
font-size: 17px !important;
}
}
AND IN TOPBAR CONTENT
Thank you for your advice thus far on everything, and hopefully for pointing me in the right direction here!
Alex.