Hi,
I asked questions in another section and received these answers:
1.To enlarge the font on the bottom of my photo slider in the header portion of the site -
You can open style.css and adjust line 2012.
.boxed #featured .feature_excerpt{
padding: 20px 20px 38px 20px;
width:938px;
}
To:
.boxed #featured .feature_excerpt{
padding: 20px 20px 38px 20px;
width:938px;
font-size:16px;
}
2.) I want to darken the colors of the menu in the header of the site -
You can play with the colors in light-skin.css on line 44 through 56.
#top .avia_mega a{
color:#333; /*Color of the menu text*/
background:#ff0099; /*Color of the menu background when not hovered*/
}
#top .avia_mega>.current-menu-item >a, #top .avia_mega>li:hover>a{
background: #333;
color:#fff;
}
#top .avia_mega>li>a:hover, #top .avia_mega>li:hover>a, #top #wrap_all .avia_mega .open-mega-a{
background: #fff; /*BG when hovered*/
color:#333; /*color when hovered*/
}
My issues are:
1. To increase font size - no matter what # I input (I've tried 12, 16, 24, 36px) the font stays the same size which is smaller than I would like. Any other suggestions?
2. I want to darken the colors of the menu in the header of the site by playing with the colors in light-skin.css on line 44 through 56, but I have no idea where the light-skin.css is located.
and a new one:
3. How to I remove the "magnifying glass" effect from the photos on the site?
Thanks in advance! I really appreciate it!!














