WP Fedaro - Stupid question

Home Forums Support WP Fedaro - Stupid question


How do I change the default style to GREEN in the Fedaro theme? This seems like a simple thing to do by setting the “load this style by default: [green]” but the yellow style still loads.


This makes no sense at all! I created a new menu item and connected it to a Page. When I view that page, the style turns green. How do I change it for the rest of the site??


Hi Jnk,
By default, you can see the layout front-page assigned to home menu item
See https://imgur.com/a/WhYHiRY and scroll down to Assignment see https://imgur.com/a/IZW5pqM
So if you change the style, simply change it for front-page layout too or simply remove the front-page layout then use default layout style.
The front-page layout created for Home page customizing purpose only ( Not effect to all pages, just home page)


I am using WordPress


Hi JNK,
Its a same method :), if you are using wordpress, just go to WP Dashboard -> Fedaro Pro -> Layouts


Yeah, I eventually figured that out but it wasn’t working after I changed it — even after closing browsers, clearing cache, trying a different computer. I think compiling LESS finally sorted it but I cannot confirm that.

Two more stupid questions:

1) How do I stop heading styles (h1..h6) from using uppercase?
2) When I have text formatted bold + italic, the text color is hot pink. How do I set to use the normal text color and only apply the font-style?

For both of these issues, tried changing the options in the [advanced] Customizer. That did not work so I tried adding custom CSS. Neither of these fixed the problem.

  • This reply was modified 54 years, 4 months ago by .

“Yeah, I eventually figured that out but it wasn’t working after I changed it — even after closing browsers, clearing cache, trying a different computer. I think compiling LESS finally sorted it but I cannot confirm that.”

Just submit private question here https://warptheme.com/member-area/ticket-system/ I will help you check it.

1) How do I stop heading styles (h1..h6) from using uppercase?

You can use css method like so

h1, h2, h3, h4, h5 {
    text-transform: none;
}

just add to custom.css file located at wp-root/wp-content/themes/fedaro_wp_pro/css/custom.css

2) When I have text formatted bold + italic, the text color is hot pink. How do I set to use the normal text color and only apply the font-style?

You can set em color like

em {
    color: #ccc;
}

You must be logged in to reply to this topic.