Using a servo with LDR to turn a solar panel

First correct either your program or the comments because they don't match

A section of your code and comments

      myservo.write(110);                                         //then tell the servo to rotate forwards at a steady rate (close shade)
      delay(2500);                                                //2.5 second delay while shade is closing
      myservo.write(95);                                          //stop rotation after dalay

Your code with my comments

      myservo.write(110);                                         //tell the servo to move to 110 as fast as possible  
      delay(2500);                                                //2.5 second delay doing nothing
      myservo.write(95);                                          //tell the servo to move to 95 as fast as possible

What type of servo do you have ? Even if is one that moves slowly then why do you need to stop it after 2.5 seconds and reposition it ? Why not move it directly to where it is needed ?

How is the servo powered ? Not from the Arduino I hope.