Page 1 of 1

Quick reference css adjustments

Posted: Thu Jan 29, 2015 12:20 pm
by nigelfaraday67
Hi, I'm trying to customise a popup, is there a reference page somewhere with all the possible pieces of code that can be input in to the css box? i.e. I'm trying to align images, change box sizes, etc

Posted: Thu Jan 29, 2015 12:51 pm
by Jean-Christophe Bisoux
Hi,
If you use the custom CSS, it's the normal CSS there is no particularity with WPS, all is possible ;)

Posted: Thu Jan 29, 2015 2:05 pm
by nigelfaraday67
Thanks, how would I align the privacy statement properly in this popup - what css would I use?

https://dl.dropboxusercontent.com/u/905 ... tPopup.PNG

Need to get the privacy showing below the email input field, or submit button.

Many thanks

Posted: Thu Jan 29, 2015 2:34 pm
by Jean-Christophe Bisoux
Is it posible to have a live url to see the code, with only an image it's imposible

Posted: Thu Jan 29, 2015 5:48 pm
by nigelfaraday67
hi, url is rehabguide.co.uk/2-methods-cut-rehab-costs-20/, many thanks

Posted: Thu Jan 29, 2015 6:39 pm
by Jean-Christophe Bisoux
Can you try this code in CSS custom :

Code: Select all

.wps_privacy{
	position: absolute;
	bottom: -10px;
	left: 400px;
	font-size: 11px;
}

Posted: Fri Jan 30, 2015 2:25 pm
by nigelfaraday67
Hi, this has no effect: https://dl.dropboxusercontent.com/u/905 ... Popup2.PNG

Can see it at url: rehabguide.co.uk/2-methods-cut-rehab-costs-20

Posted: Fri Jan 30, 2015 5:35 pm
by Jean-Christophe Bisoux
Sorry, I forgot to say in the Custom CSS editor you must enter the css in 1 line

Code: Select all

.wps_privacy{position: absolute;bottom: -10px;left: 400px;font-size: 11px;}

Posted: Thu Feb 05, 2015 6:52 pm
by nigelfaraday67
thanks! This worked perfect :)