| 
		
			
			
				
			
			
				 
			
			
				
			
		 | 
		
			
			
				 
			
				
			
		 | 
	||||
| 
				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.  | 
		
		 
		![]()  | 
	
		
			
  | 	
	
	
		
		|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
| 
		 | 
	Thread Tools | 
| 
			
			 | 
		#1 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Apr 2003 
				Location: Florida 
				
				
					Posts: 649
				 
				
				
				
				 | 
	
	
	
	
		
			
			 
				
				CODERS HELP!!! Bootstrap 4 Carousel Responsive
			 
			It's been hours of googling, looking for a responsive fix for the Bootstrap 4 carousel images, and I am having no luck. Any coders in here that can get this carousel to be responsive when the browser window is resized? 
		
	
		
		
		
		
			
		
		
		
		
	
	Here is the page... http://phil-flash.com/test.php  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			
			
		
			
				
			
			
			 Industry Role:  
				Join Date: Mar 2003 
				Location: San Diego 
				
				
					Posts: 32,277
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 You have to add smaller pics in a separate responsive CSS3 file. 
		
	
		
		
		
		
			Its late now but I can help you with this tomorrow. 
				__________________ 
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 (>^_^)b 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Dec 2011 
				
				
				
					Posts: 7,224
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Someone said to put this in for CSS: 
		
	
		
		
		
		
			Code: 
	.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}
Hope this helps. I'd test it but it's 3am.. ![]() 
				__________________ 
		
		
		
		
	
	 Join the BEST cam affiliate program on the internet! I've referred over $1.7mil in spending this past year, you should join in. ![]() I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..  
			 | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#4 | |
| 
			
			
			
			 Making PHP work 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Nov 2002 
				Location: 🌎🌅🌈🌇 
				
				
					Posts: 20,652
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Quote: 
	
 I coded up the proper solution. Contact me. Thanks  | 
|
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#5 | 
| 
			
			
			
			 Registered User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Nov 2017 
				
				
				
					Posts: 4
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Hi, I'm not a coder, but you can try this: 
		
	
		
		
		
		
		
	
	You need to add a new media request to the custom.css in the RESPONSIVE CSS section. This is need for changing the height of the carousel when the size of the browser window change. Already you have two media requests in the custom.css - @media (min-width: 40em) and @media (min-width: 62em) Now these blocks look like this: Code: 
	/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .featurette-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
Code: 
	@media (min-width: 40em) {
  /* Bump up size of carousel content */
.carousel-item > img {  
height: 15rem;
}
.carousel-item {
height: 15rem;
}
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .featurette-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
.carousel-item > img {  
height: 22rem;
}
.carousel-item {
height: 22rem;
}
  .featurette-heading {
    margin-top: 7rem;
  }
}
I hope this helps you.  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 |