Reinstall redux did not fix it. I delete Pinnacle, wordpress, Wamp. Reinstall all in English. Same problem.
With Chrome inspect tool, saw for H1, font-weight: normal and font-style:700 as mentionned above. They seem to be inverted since font-weight should be 700 and font-style normal as style can only be normal, italic, oblic or inherit, not a number.
It provides indication its line 52 that causes the problem:
<style type="text/css" title="dynamic-css" class="options-output">.kad-primary-nav ul.sf-menu a,.nav-trigger-case.collapsed .kad-navbtn{color:#ffffff;}.sticky-wrapper #logo a.brand, .trans-header #logo a.brand{color:#ffffff;}.is-sticky header #logo a.brand,.logofont,.none-trans-header header #logo a.brand,header #logo a.brand{font-family:Raleway;font-weight:normal;font-style:400;color:#444444;font-size:32px;}.titleclass h1{color:#ffffff;}.titleclass .subtitle{color:#ffffff;}.product_item .product_details h5, .product-category.grid_item a h5{font-family:Raleway;line-height:20px;font-weight:normal;font-style:700;font-size:15px;}h1{font-family:Raleway;line-height:50px;font-weight:normal;font-style:700;font-size:44px;}h2{font-family:Raleway;line-height:40px;font-weight:normal;font-style:400;font-size:32px;}h3{font-family:Raleway;line-height:40px;font-weight:normal;font-style:400;font-size:26px;}h4{font-family:Raleway;line-height:34px;font-weight:normal;font-style:400;font-size:24px;}h5{font-family:Raleway;line-height:26px;font-weight:normal;font-style:400;font-size:18px;}.subtitle{font-family:Raleway;line-height:22px;font-weight:normal;font-style:400;font-size:16px;}body{line-height:20px;font-style:400;font-size:14px;}.is-sticky .kad-primary-nav ul.sf-menu a, ul.sf-menu a, .none-trans-header .kad-primary-nav ul.sf-menu a{font-family:Raleway;font-weight:normal;font-style:400;color:#444444;font-size:16px;}.kad-nav-inner .kad-mnav, .kad-mobile-nav .kad-nav-inner li a{font-family:Raleway;line-height:20px;font-weight:normal;font-style:400;font-size:16px;}#topbar ul.sf-menu > li > a, #topbar .top-menu-cart-btn, #topbar .top-menu-search-btn, #topbar .nav-trigger-case .kad-navbtn, #topbar .topbarsociallinks li a{font-family:Raleway;font-weight:normal;font-style:400;font-size:11px;}</style>
So, I created a child theme and in the file named style.css (after the /* bla bla for the theme */ I added:
h1 {
font-style: normal;
font-weight: 700;
}
hoping my css code would have precedence over one mentionned yesterday. Refreshing the page, still no bold.
Inspect, saw again the infamous “font-weight: normal and font-style: 700″, above my new css which now appears as the next css to be called ” “media “all” H1 font-weight: 700 “.
If I unclick “font-weight: normal” , my new css “font-weight: 700” becomes activate and it becomes in bold.
It looks like in the <style type=”text/css” title=”dynamic-css” class=”options-output”> some font-style and font-weight are interverted.
Question: how can I change that? Can a css file in my child-theme change it? Should it be elsewhere than style.css ? Should it be in a sub-directory of the child theme? Because there seems to be many files with css code…
I am thanking you for your patience with me!