Tannie Low
asked 11 years ago

Any idea why the Theme Options tab didn’t show up in my Dashboard? I also cannot view any of the admin images (icons, plugin rating stars, etc).

5 Answers
DominicStaff
answered 11 years ago

Hello Tannie Low!

In the updated version of the theme, the Theme Option is not visible in the back-end, you can find it here: Appearance > theme > Customize > General Settings

Regards,
Dominic

Mte90
answered 11 years ago

but the settings for mega menu,social link and blog settings?

in this post are not explained http://designwall.com/2013/02/responsive-news-magazine-wordpress-theme-dw-focus/

Dominic Staff
replied 11 years ago

you can find the social link in Theme > customize > Social Links

Tannie Low
answered 11 years ago

Okay, so how do I set the color for categories, like on the demo?

I was guessing this would be in the Theme Options or one of the videos – no luck.

Tannie Low
answered 11 years ago

I figured this out.

To set hover colors for the menu items, use the CSS Classes field (i.e. color-blue) under each item.

Make sure you have it enabled under Screen Options (top right) and check CSS Classes.

 

 

DominicStaff
answered 11 years ago

Hi @Tannie Low!

If you want to  change hover colors for the menu items, you can  add code following in Theme option.

<style>
/* business */
.navbar .nav > .color-green a:hover, .navbar .nav > .color-green a:active, .navbar .nav > .color-green a:focus {
color : #...;
}

.navbar .nav > .color-green .sub-menu .active > a {
color: #... !important;
}

/* entertainment*/
.navbar .nav > .color-violet a:hover, .navbar .nav > .color-violet a:active, .navbar .nav > .color-violet a:focus {

color: #...;
}

.navbar .nav > .color-violet .sub-menu .active > a {
color: #... !important;
}

/* Hi-tech*/
.navbar .nav > .color-blue a:hover, .navbar .nav > .color-blue a:active, .navbar .nav > .color-blue a:focus {
color: #...;
}

.navbar .nav > .color-blue .sub-menu .active > a {
color: #... !important;
}

/* Game*/
.navbar .nav > .color-yellow a:hover, .navbar .nav > .color-yellow a:active, .navbar .nav > .color-yellow a:focus {
color: #...;
}

.navbar .nav > .color-yellow .sub-menu .active > a {
color: #... !important;
}
/* Politic*/

.navbar .nav > .color-cyan a:hover, .navbar .nav > .color-cyan a:active, .navbar .nav > .color-cyan a:focus {
color: #...;
}

.navbar .nav > .color-cyan .sub-menu .active > a {
color: #... !important;
}

/* Sport*/

.navbar .nav > .color-orange a:hover, .navbar .nav > .color-orange a:active, .navbar .nav > .color-orange a:focus {
color: #...;
}

.navbar .nav > .color-orange .sub-menu .active > a {
color: #... !important;
}
/* Features*/
.navbar .nav li a:hover, .navbar .nav li a:active, .navbar .nav li a:focus {
color: #...;
}

</style>

Regards,
Dominic

Powered by DW Question & Answer Pro