| 
		
			
			
				
			
			
				 
			
			
				
			
		 | 
		
			
			
				 
			
				
			
		 | 
	||||
| 
				Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.  You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us.  | 
		
		
			
  | 	
	
	
		
		|||||||
| New Webmasters ask "How-To" questions here. This is where other fucking Webmasters help. | 
| 
		 | 
	Thread Tools | 
| 
			
			 | 
		#1 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Dec 2012 
				
				
				
					Posts: 184
				 
				
				
				
				 | 
	
	
	
	
		
			
			 
				
				Need HTML/CSS help with my Text/Icons
			 
			Hi Guys.   
		
	
		
		
		
		
			I'm trying to figure out how to get the text on my Model pages to lay -over- the image itself. I plan on getting rid of the current name background and just having the name sit over the image towards the bottom, with a translucent black background. Something like this: ![]() I've been trying to use the firefox "inspect element" feature to mess with the code and work it out but so far haven't had any luck. Thanks for your time, ~TT 
				__________________ 
		
		
		
		
		
			
		
		
	
	www.tittytweaker.com  | 
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			 Confirmed User 
			
		
			
			
			Industry Role:  
				Join Date: Oct 2013 
				Location: Canada 
				
				
					Posts: 895
				 
				
				
				
				 | 
	
	|
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 Registered User 
			
		
			
			
			Industry Role:  
				Join Date: Dec 2013 
				
				
				
					Posts: 12
				 
				
				
				
				 | 
	
	
	
	
		
			
			 Try this: 
		
	
		
		
		
		
		
	
	Code: 
	.modelicon li {
    background: none;
    position: relative;
    height: 244px;
}
.modelicon .spacer {
    display: none;
}
.modelicon a:first-of-type {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    padding: 2px;
    text-align: center;
}
 | 
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#4 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Dec 2012 
				
				
				
					Posts: 184
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Thanks, Flowing. 
		
	
		
		
		
		
			It appears that it's also affecting my pagination, though, and my drop down menus are now hidden behind the icons when they roll out. Can you explain how to fix those? 
				__________________ 
		
		
		
		
	
	www.tittytweaker.com  | 
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#5 | 
| 
			
			
			
			 Registered User 
			
		
			
			
			Industry Role:  
				Join Date: Dec 2013 
				
				
				
					Posts: 12
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 You need to play with the z-index to bring elements back/fwd, when something like that happens. The submenu, for example: 
		
	
		
		
		
		
		
	
	Code: 
	.navigation ul.menu li ul.sub-menu {
  z-index: 10;
}
Change .modelicon a:first-of-type to .modelicon > ul a:first-of-type  | 
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#6 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Dec 2012 
				
				
				
					Posts: 184
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Thank you very much for the help.  Had a feeling it had something to do with the specificity since I seem to run into similar problems every once in a while.    
		
	
		
		
		
		
			Thanks again for helping a newbie out :D ~TT 
				__________________ 
		
		
		
		
	
	www.tittytweaker.com  | 
| 
		 | 
	
	
	
		
                 | 
| 
			
			 | 
		#7 | 
| 
			
			
			
			 Registered User 
			
		
			
			
			Industry Role:  
				Join Date: Dec 2013 
				
				
				
					Posts: 12
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 | 
| 
		 | 
	
	
	
		
                 |