Mr Lucky Well-known member Nov 13, 2014 #1 Is it possible to make the icons align horizontally rather than vertically? Thanks
P Paul B XenForo moderator Staff member Nov 13, 2014 #2 The sidebar would have to be overly wide to allow that. Upvote 0 Downvote
Mr Lucky Well-known member Nov 13, 2014 #3 Brogan said: The sidebar would have to be overly wide to allow that. Click to expand... My sidebar is 300px, it would allow it. Upvote 0 Downvote
Brogan said: The sidebar would have to be overly wide to allow that. Click to expand... My sidebar is 300px, it would allow it.
P Paul B XenForo moderator Staff member Nov 13, 2014 #4 Apply a float left to the class used for each share service. You may need to edit the CSS for the container, to add a height, otherwise the floated items will break out of the bottom. Upvote 0 Downvote
Apply a float left to the class used for each share service. You may need to edit the CSS for the container, to add a height, otherwise the floated items will break out of the bottom.
Mr Lucky Well-known member Nov 13, 2014 #5 Brogan said: Apply a float left to the class used for each share service. You may need to edit the CSS for the container, to add a height, otherwise the floated items will break out of the bottom. Click to expand... Thanks. Do you know how I find out which exact container I need to specify? Upvote 0 Downvote
Brogan said: Apply a float left to the class used for each share service. You may need to edit the CSS for the container, to add a height, otherwise the floated items will break out of the bottom. Click to expand... Thanks. Do you know how I find out which exact container I need to specify?
Mr Lucky Well-known member Nov 13, 2014 #7 Thanks. I tried that, not working Have I got something wrong: Code: .section. infoBlock. sharePage { height:70px; !important; } Upvote 0 Downvote
Thanks. I tried that, not working Have I got something wrong: Code: .section. infoBlock. sharePage { height:70px; !important; }
P Paul B XenForo moderator Staff member Nov 13, 2014 #8 It needs to be applied to the secondaryContent div. Upvote 0 Downvote
Mr Lucky Well-known member Nov 13, 2014 #9 So Code: secondaryContent. section. infoBlock. sharePage Sorry I'm a bit thick with css Upvote 0 Downvote
Mr Lucky Well-known member Nov 13, 2014 #10 Got it! Code: /* height }*/ .section.infoBlock.sharePage div.secondaryContent { height:90px; !important;} Upvote 0 Downvote
Got it! Code: /* height }*/ .section.infoBlock.sharePage div.secondaryContent { height:90px; !important;}