Hi there, Is there custom CSS that I could put in to center the main logo of the site? Before editing the main logo would be Nutrition. And is there code I could enter to change the colour of hyperlinks in the site? Thanks in advance for your help.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .header .logo { float: right; margin-right: 30px; } a{ color:blue; } Adjust margin as per your requirements. Thanks & Regards Gourav Shrivastava
Thanks so much! If I adjust the logo to the center would it automatically adjust accordingly if the site is viewed on a different sized screen?
Hello, For other devices Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: @media only screen and (max-width: 767px) and (min-width: 480px) .header .logo { { float: none; }} @media only screen and (max-width: 480px){ .header .logo { float: none; }} Thanks & Regards Nitesh Raghuwanshi