Tagged: socket
Is there a way to increase the socket font size and also a way to re-position it?
Hey markpevans!
Try this CSS code.
#socket { font-size: 14px !important; }
As for repositioning it are you trying to move the copyright text to the right instead of left? If so then add this.
#socket .copyright { float: right !important; }
Best regards,
Elliott
Thanks Elliot. I was actually thinking of moving the socket menu (currently on the right) so that is is centred. Is that possible?
Eeek! That css has made the copyright area big too. I was only looking to increase the font size of the socket menu on the right. Is this possible?
Hey!
Please add following code to Quick CSS
nav.sub_menu_socket {
font-size: 14px;
position: relative;
right: 20%;
}
You may need to adjust right value to center it perfectly
Cheers!
Yigit
Awesome. thanks so much, worked a treat :)