I'm currently customizing a WordPress theme for my website (pinboard theme) and so far, it's been an amazing experience. One of the features of this theme is a built-in slider/carousel. However, I am looking to change the title of the slider from appearing on the right to displaying on the left side. The current CSS style for the title is as follows:
#slider .entry-title {
display: none;
position:absolute;
top:32%;
right: none;
z-index:1;
float:right;
margin:0;
font-family: "Open Sans", sans-serif;
font-size:36px;
line-height:1.62em;}
Fortunately, this theme provides a custom CSS override option, eliminating the need to modify the original style.css file. Simply inputting the new CSS override code will do the trick. My goal is to remove right:none
- any advice or suggestions on how to achieve this would be greatly appreciated.
Thanks in advance.