explain, so i can help you in better way..
In my slider, I have “Compassionate Care at Home” in the title area and “There’s a reason Compassionate Care at Home is the fastest growing home care agency in Connecticut” in the description area. The description is interfering with my slider image. Is there anyway I can shift my text to the left so my text does not overlap with the image. I previously made changes to the custom css by using the code
#slider.featured {
vertical-align: top;
}
so that I could see my text at the top of the slider. Is there anyway to use a similar code to shift all text to the left as well?
Might a text box be the solution and if so, is there a way to create a text box? Thanks in advance! I appreciate any help!
Remove old selector and class & Put these css code in file style.css, line:1069
#slider .rslides-content-inner {
display: table;
width: 60%;
height: 100%;
margin: 20px 0px 0px -120px;
text-align: left;
Your text will be adjusted to the left top side…any other question ask…
Don’t modify theme files – as your changes will be lost when the theme is updated. Use custom CSS or a child theme.
Thanks for your help! Problem solved!