$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>How do I changeremove styling (top border) on main menu for active page and hovering (Avada Theme)|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How do I changeremove styling (top border) on main menu for active page and hovering (Avada Theme)

matteradmin9PV0评论

As per the title, how do I change/remove styling (which is a white top border) on the main menu for both the active page and on hovering a menu item? I am using the Avada child theme and started out with the Architecture demo content. I'm new to web dev and using Custom CSS but can figure most things out with a little guidance. Have checked the forum for existing threads but nothing I have tried has works so far. Thanks in advance.

As per the title, how do I change/remove styling (which is a white top border) on the main menu for both the active page and on hovering a menu item? I am using the Avada child theme and started out with the Architecture demo content. I'm new to web dev and using Custom CSS but can figure most things out with a little guidance. Have checked the forum for existing threads but nothing I have tried has works so far. Thanks in advance.

Share Improve this question asked May 29, 2017 at 1:59 James AllenJames Allen 31 silver badge3 bronze badges 1
  • You can put your own css properties to change styling. Use google inspection tool (f12) to check in which class you need to change properties. – Rishabh Commented May 29, 2017 at 4:19
Add a comment  | 

1 Answer 1

Reset to default 1

Go to you theme admin panel then Appearance > Editor. Then paste this code bellow into Stylesheet (style.css):

.fusion-main-menu .current_page_item > a {

    border-color: #000 !important;
}

.fusion-main-menu > ul > li > a:hover {
    color: #000 !important;
}

Hope it solve your problem

Post a comment

comment list (0)

  1. No comments so far