Link to home
Start Free TrialLog in
Avatar of nsitedesigns
nsitedesignsFlag for United States of America

asked on

modify home page font size

I used chrome to access nsitedesigns.com.  Am trying to reduce white font size in main boxes (blue, orange and purple).  Looks like it is called textwidget.  I could not find this in the css file.  When i added textwidget p to the style sheet and modified the font size, it didn't do anything.  Not sure what I am doing wrong.

p.s.  Seems alot of new sites have HUGE fonts on the home page.  Is that now the new normal?
SOLUTION
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nsitedesigns

ASKER

Must be a caching issue again because that was what I did and I didn't see any change.  Will try again.

Thanks
Hmmm  The change did not impact the other colored boxes on home page.  

The footer is the only one that has a smaller font size. I can't recall what I changed to get the footer to a smaller font size but I was able to do that about 2 weeks ago.  Again, still learning and going through some pretty dramatic growing pains.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Still could not get it to work.  Finally figured out what I had to do.  I modified the following and it worked!  Line 1156 in css.

.home-even,
.home-odd {
      clear: both;
      font-size: 25px;
      overflow: hidden;
      padding: 190px 0 200px;
      text-align: center;
}
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks!