Hi, I really like the Blue as water theme, I just was wondering if it could be possible to have the tittle centered and with capital letters just the same as the description? Thanks so much!! I´m looking forward to your new themes as well!
Hi :) If I got it right, you want the title centered + in capital letters, and you want the description centered as well, correct?!
Copy the code I provided and paste it as your html. To center the title and have it in capital letters, search for this in the provided code:
#title { color:{color:title color}; font-family: trebuchet ms; width:245px; text-align: left; text-transform:lowercase; font-weight:bold; margin-bottom:90px; font-size:11px; padding:11px; margin-left:-10px;}
and replace it with the following:
#title { color:{color:title color}; font-family: trebuchet ms; width:225px; text-align: center; text-transform:uppercase; font-weight:bold; margin-bottom:90px; font-size:10px; padding:12px 0px 12px 0px; margin-left:0px;}
And now, in order to make the description centered, you search for this in the code:
#description { position: relative; width: 225px; margin-top:3px; text-align:left; text-transform:uppercase; line-height:13px; font-size:9px; padding:12px 0px 12px 0px; margin-bottom:-1px; margin-left:0px;}
and replace it with this:
#description { position: relative; width: 225px; margin-top:3px; text-align:center; text-transform:uppercase; line-height:13px; font-size:9px; padding:12px 0px 12px 0px; margin-bottom:-1px; margin-left:0px;}
Hope that was what you meant!<3