Quick reference css adjustments
- 
				nigelfaraday67
- Member
- Posts: 45
- Joined: Fri Apr 18, 2014 12:12 pm
Quick reference css adjustments
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
			
			
									
						
										
						- 
				Jean-Christophe Bisoux
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
- 
				nigelfaraday67
- Member
- Posts: 45
- Joined: Fri Apr 18, 2014 12:12 pm
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
			
			
									
						
										
						https://dl.dropboxusercontent.com/u/905 ... tPopup.PNG
Need to get the privacy showing below the email input field, or submit button.
Many thanks
- 
				Jean-Christophe Bisoux
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
- 
				nigelfaraday67
- Member
- Posts: 45
- Joined: Fri Apr 18, 2014 12:12 pm
- 
				Jean-Christophe Bisoux
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
Can you try this code in CSS custom :
			
			
									
						
										
						Code: Select all
.wps_privacy{
	position: absolute;
	bottom: -10px;
	left: 400px;
	font-size: 11px;
}
- 
				nigelfaraday67
- Member
- Posts: 45
- Joined: Fri Apr 18, 2014 12:12 pm
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
			
			
									
						
										
						Can see it at url: rehabguide.co.uk/2-methods-cut-rehab-costs-20
- 
				Jean-Christophe Bisoux
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
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;}

