Re: Edited default skin -- A few issues
Well it is actually pretty simple css changes that will fix the problem - so clearly your designer isn't experienced in css, nor x-cart for that matter - no wonder you are upset!
OK, let's fix this up for you.
You need to start with the css class:
#header div.search
and you should see "left: 180px;"
This is what is putting the search box 180 pixels out. Change that to 0 and it will pop back in place.
If you can't see that left command, you are in the wrong css file - you seem to have the #header div.search class in 2 css files.
I can't tell what css file it's in, because you have css caching turned on - if you turn this off in admin, general settings, it will help. If you want to turn it off and let me know, I'll check again and tell you.
To make your products b/g black - again simple css change - just need to find the right css file - but you are looking for the class:
.dialog .content
and simply add a black background to it, e.g.
background: none repeat scroll 0 0 #000000;
This will though, probably make all such backgrounds black - which is probably ok.
If not, you'll have to edit the template and make a new css class.
|