Hello~
I have 2 questions about profile field.
1) CSS in field
I made 4 skin types field which consist of 4 levels in user profile field.
these shows like below in profile edit page.
‘http://miinfra.co.kr/members/isamuel00/profile/edit/group/1/’
DS Level1
DS Level2
DS Level3
DS Level4
OS Level1
OS Level2
OS Level3
OS Level4
DD Level1
DD Level2
DD Level3
DD Level4
OD Level1
OD Level2
OD Level3
OD Level4
But I want to show like below
DS Level1 DS Level2 DS Level3 DS Level4
OS Level1 OS Level2 OS Level3 OS Level4
DD Level1 DD Level2 DD Level3 DD Level4
OD Level1 OD Level2 OD Level3 OD Level4
I tried to use ‘float’ function but,
#field_5 {float:left;}
it didn’t work.
How can I set that style in skin type in profile field?
2) How to show hidden text in view page in profile
Some text color is white, so it does show nothing.
How can I change text color from white to black?
Hi,
I can not access the first link you provided – https://www.screencast.com/t/cfAevsEeT71 and I do not understand exactly how to help you. I see that you are trying to set a float property on those items, you could group them by 4 in a div and then set a float on the groups, or float them one by one in a specified width. But I can not say for sure if I can not see how you are implementing this. Here is a css selector list maybe you can manage to find something that works for you – https://www.w3schools.com/cssref/css_selectors.asp
If you are talking about the text in the label, you could change the color with css, just enter this code in Theme panel->Custom Css
.label {
color: black;
}
Result – https://www.screencast.com/t/kVniTmdnOHWr
Thanks
Thank you for your kind answer, Simion C.!!
I solved No2 problem.
For No1 problem,
Yes, you are right.
I am trying to set a float property on those items,
I could group them by 4 in a div and then set a float on the groups
I have made id and password for your login.
Could you check how to implementing this?
Hi,
You could use the code I provided below with this result – https://www.screencast.com/t/ywooBq9D7TgT They are now grouped as you mentioned. You must enter this code in Theme panel->Custom Css
.field_5 .option-label {
float:left;
width: 25%!important;
}
Also I will edit your reply and remove the login information you provided for privacy, as this is a forum so other users could use that information.
Thanks