Hi @juranadmin,
Before we continue, would you mind briefing us what customizations are missing? All I could see are fonts and the layout width (which from the original is 1595px and the staging has 1390px which of course, not part of customization since it’s configurable in Theme Options.
As for the font, you’ll have to reconfigure it too since the latest one has updated font system than the older one. Like the menu fonts and styling in Theme Options.
The rest all looks the same to me unless you can point out which customization are we expecting. And also, the news ticket in the header is a 3rd party plugin and the custom code
[data-x-icon], [class*="x-icon-"], .x-navbar .mobile .x-nav li>a, a, body {
color: #24135f;
}
Is being overridden by this
a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .x-breadcrumb-wrap a:hover, .widget ul li a:hover, .widget ol li a:hover, .widget.widget_text ul li a, .widget.widget_text ol li a, .widget_nav_menu .current-menu-item > a, .x-accordion-heading .x-accordion-toggle:hover, .x-comment-author a:hover, .x-comment-time:hover, .x-recent-posts a:hover .h-recent-posts {
color: rgb(255,143,28);
}
And that is generated by the theme based on the color set in Theme Options
. Perhaps, you change it in the Theme Options too? Or you could edit your custom CSS and add !important. Example,
[data-x-icon], [class*="x-icon-"], .x-navbar .mobile .x-nav li>a, a, body {
color: #24135f !important;
}
Thanks!