Question

Course Rating Stars

  • 22 September 2022
  • 8 replies
  • 134 views

Userlevel 2
Badge

Is there CSS code to hide the course rating stars for the extended enterprise? We want to turn on course rating for our employees but not our customers.


8 replies

Userlevel 7
Badge +5

My understanding is that EE has its own CSS modifications area. If that is the case, give this a try.

/** Hide the star ratings **/

rating {
display: none;
}

I am guessing if you disable it by course that it applies to all both root and EE if you don’t have a separate instance of the course for each EE.

I am unsure on that because I don’t have EE.

Userlevel 5
Badge +2

@gstager, you are correct. Extended Enterprise will allow for unique domain-specific CSS to be applied.

After selecting a specific domain, click Configure Branding and Look:

Next, select the dropdown for Custom Styles and enable the CSS area:

 

Userlevel 3
Badge

@gstager, you are correct. Extended Enterprise will allow for unique domain-specific CSS to be applied.

After selecting a specific domain, click Configure Branding and Look:

Next, select the dropdown for Custom Styles and enable the CSS area:

 

Thank you @John . Do you know which code is for the rating stars- the icons-? I´d like them bigger…. :)

Userlevel 7
Badge +3

Seems like: 

label .fa-star-o {
font-size:30px;
}
.fa fa-star .filled {
font-size:30px;
}

First one does the stars empty state, second when full. 

Userlevel 3
Badge

Awesome! Thanks @Bfarkas 

Userlevel 5
Badge +2

@Isram - Bfarkas is too fast for me. :)

Userlevel 3
Badge

@Bfarkas  Help . I changed both sizes, however fa-star. filled doesnt change size.  Any idea? 

 

 

Userlevel 7
Badge +3

It’s .fa fa-star .filled , would be helpful if you post what you did though for us to troubleshoot.

Reply