Jump to content

[SOLVED] Stars (rating) all messed up in Product Comments module


Recommended Posts

I'm cleaning up the module Product Comments and so far I arranged all things into desired position.

Yet, since from the beginning, I can't figure out how to arrange correctly the display of the rating stars on the new comment section.

Here's what I get:

 

comments.jpg

 

 

Does anyone know how to align the stars correctly? I've been messing up with the entire .css and can't find a solution…

Link to comment
Share on other sites

change height to 12px  in: .cancel, .star and right below this add

.cancel, .star {
float: left;
width: 17px;
height: 12px;
overflow: hidden;
text-indent: -999em;
cursor: pointer;
}
.cancel { height:15px; }

in global.css line 1561

 

in the same file near line 1577 youv'e got div.star_on a, just remove -16px and instead of it use just 0px;

div.star_on a {
background-position: 0px;
}

one line below change background-position: 0 -32px; to:

div.star_hover a, div.star a:hover {
background-position: 0 -12px;
}
Link to comment
Share on other sites

Milos: Thanks for all your help so far.  :D

 

I have the feeling I'll be asking for help on another issue tomorrow or so, since I'm having an issue of left column disappearing when finalizing a payment and the centre column aligning to the left. But I'll try to look it up meanwhile.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...