Form Component Problem

OS (e.g. Win10):
PsychoPy version (e.g. 1.84.x): 2023 1.2
Standard Standalone? (y/n) If not then what?: y
**What are you trying to achieve?: Hello! I am trying to use the form component to create a questionnaire asking multiple questions and having a slider or rating as the type. However, I cannot get the choice or radio type to work. I also cannot change the item text color or its size or any of the text colors/sizes in general. I am not planning on running this experiment online either, I just want it to work in builder. I am using an excel csv file to create the questionnaire. I am also still somewhat new to Psychopy/coding.

**What did you try to make it work?: I have tried entering in different colors in the itemColor and response columns as well as changing the values in the itemWidth columns of my excel file. I have also tried running bits of code that I have found on other forum posts but they do not seem to work either.

**What specifically went wrong when you tried that?: I get AttributeError for when I tried running some pieces of code. For example, ‘Form’ object has no attribute ‘formElements’ is one of them.

I also get this error when I tried to run a demo file by Becca. It is: 3.3553 ERROR Support for the sounddevice audio backend is not available this session. Please install psychopy-sounddevice and restart the session to enable support.
File “C:\Users\Owner\Documents\MAKECOPYFORRATINTS\temp (2)_lastrun.py”, line 113, in
demographics = visual.Form(win=win, name=‘demographics’,
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\form.py”, line 194, in init
self.style = style
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\form.py”, line 1165, in style
if style in self.knownStyles:
TypeError: unhashable type: ‘list’

I have also gotten this error when trying to do type choice and radio. It is:3.4119 ERROR Support for the sounddevice audio backend is not available this session. Please install psychopy-sounddevice and restart the session to enable support.
File “C:\Users\Owner\Downloads\demographics_lastrun.py”, line 352, in
win.flip()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\window.py”, line 1094, in flip
thisStim.draw()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\form.py”, line 883, in draw
self._drawCtrls()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\form.py”, line 853, in _drawCtrls
element.pos = (element.pos[0],
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\slider.py”, line 249, in pos
self._layout()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\slider.py”, line 497, in _layout
self._getMarkerParams()
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\slider.py”, line 590, in _getMarkerParams
pos = self._ratingToPos(self.rating or 0)
File “C:\Program Files\PsychoPy\lib\site-packages\psychopy\visual\slider.py”, line 543, in _ratingToPos
magDelta = rating - ticks[0]
numpy.core._exceptions.UFuncTypeError: ufunc ‘subtract’ did not contain a loop with signature matching types (dtype(‘<U10’), dtype(‘int32’)) → None

Any help or advice on how to go about this would be greatly appreciated. I have been reading many other forums with no luck so far. Thanks!

I think I have just figured out the changing of colors but my font size still is a bit wonky. I also still cannot get choice/radio types to work at all. I still get the same error message mentioned above. Thanks!