Support Forum
Any way to specify the text area for posting on pc?
Ike
Sawtry, UK
Member
Free Members
Offline
Hey kvr,
Sorry but are you referring to the size of the editor window?
If so you should be able to add the class 'spEditor' and width, such as:
#spMainContainer .spEditor { width: 70%; height: 40%; }
Or are you referring to an actual 'textarea', such as in the profile edit signature page?
If not, sorry if I am misunderstanding!
Ike
Sawtry, UK
Member
Free Members
Offline
Yes you can wrap it in a min-width, or you can specify what happens if it's under that resolution by adding it on it's own, then making a copy wrapped in a max-width, so you could use:
@media screen and (min-width: 481px) { #spMainContainer .spEditor { width: 70%; height: 40%; } }
So it only applies to screens over 481px, or you could do:
#spMainContainer .spEditor { width: 70%; height: 40%; } @media screen and (max-width: 481px) { #spMainContainer .spEditor { width: 100%; height: 80%; } }
If you wanted to get specific about both.
Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 620
Members: 17365
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10128
Posts: 79626