• OMG…please help me. I spent the whole day trying to change the background color of the date box on the main/index page of the blog…and i just cant find it!

    Template – Skirmish (By Blank Themes, Version 1.9)
    Would like to change the background color (currently black) of the date right next to the title of the latest post and center the date itself.

    THANK YOU!

Viewing 3 replies - 1 through 3 (of 3 total)
  • It’s normally a recommendation that theme changes and customizations be made by Creating a Child Theme in order to prevent the loss of your customizations during a theme update. That being said, look for this in the Skirmish theme style sheet:

    .time {
         background: none repeat scroll 0% 0% #333333;
         color: #FFFFFF;
         display: block;
         font-family: georgia,arial;
         font-size: 12px;
         padding: 4px 0px;
         position: absolute;
         text-align: center;
         top: 0px;
         width: 100%;
    }

    This controls the background color..

    background: none repeat scroll 0% 0% #333333;

    This is the font color…

    color: #FFFFFF;

    This part should change the vertical alignment..

    top: 0px;

    Thread Starter smiths13

    (@smiths13)

    ohhhh… i feel so stupid right now… i saw it 10000 times. i was just looking for background: #000000 (black)

    Thank you!!!!!!!

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Minor change! Need help.’ is closed to new replies.