Hi, I am wondering what code changes I can add to make the slider text change when the slider image changes, I need to add at least 3 pictures and 3 text boxes. Please let me know what code to add and where. Thank you very much.
Hello, It require lot of customization with the Theme So you would need to hire a freelancer for this.
have you considered using a different theme (like Golden Eagle) which extends completely across you could then make the image half picture and half text
Hello, lnmarketingservices provided nice solution of making the image half picture and half text. It is also possible with the squirrel theme. Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .slides_container { width: 950px; } .slides_container div.slide img, .slides_container div.slide iframe { width: 950px; } .slider-info {display:none;} @media only screen and (max-width: 960px) and (min-width: 767px){ .slides_container { width: 760px; } .slides_container div.slide img, .slides_container div.slide iframe { width: 760px; } } @media only screen and (max-width: 767px) and (min-width: 480px){ .slides_container { width: 470px; } .slides_container div.slide img, .slides_container div.slide iframe { width: 470px; } } @media only screen and (max-width: 480px){ .slides_container { width: 293px; } .slides_container div.slide img, .slides_container div.slide iframe { width: 293px; }}