Hi,
Does anyone know how to re-position and move the top logo? My current logo is showing at the center of the page. I would like to move it to the left. Thanks.
Hi, Does anyone know how to re-position and move the top logo? My current logo is showing at the center of the page. I would like to move it to the left. Thanks. |
Yes, easily done with the CSS. If you have anything to the left of the logo, such as the top search thingy, then it will need to be moved. Will be back in a bit with the CSS. Geeks, making the world a better place |
Try looking at general.css; either in the base template, or in the css for the particular template you are using. Look around line 157 for:
div.sys_ml_wrapper {
position: relative;
text-align: center;
}
div.sys_ml_wrapper {
position: relative;
text-align: left;
}
That will move the logo all the way to the left. If that does not work, then I will probably have to look at your website.
Geeks, making the world a better place |
That works. Thank you very much. |
That works. Thank you very much. You are welcomed, that is what we are here for. Geeks, making the world a better place |