What you have put here is almost all correct. Make sure you read up on the rules of logic so that you know what is going on here.
- All girls are liked by some boys. This is equivalent to:
$$\forall x ,G_x \implies \exists y \ni(B_y \wedge L_{(x,y)})$$
- No boy likes a sulk. This is equivalent to:
$$\neg \exists x,y\ni B_x \wedge S_y\wedge L_{(x,y)}$$
$$\forall x,y,\neg( B_x \wedge S_y\wedge L_{(x,y)})$$
$$\forall x,y,\neg B_x \vee \neg S_y \vee \neg L_{(x,y)})$$
$$\forall x,y, B_x \implies (\neg S_y \vee \neg L_{(x,y)})$$
$$\forall x,y, B_x \implies (S_y \implies \neg L_{(x,y)})$$
$$\forall x,y, (B_x \wedge S_y) \implies \neg L_{(x,y)}$$
- No girl is a sulk. This is equivalent to:
$$\neg \exists x \ni G_x \wedge S_x$$
$$\forall x, \neg (G_x \wedge S_x)$$
$$\forall x, \neg G_x \vee \neg S_x$$
$$\forall x, G_x \implies \neg S_x$$