Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

Menu hover style

fullwidth
    • 10 years, 8 months ago Most spectacular
      Participant

      Hello,

      How can I change menu hover style? I’d like to use this style:

      https://codeless.co/specular/fullscreen/

      Thanks!

    • 10 years, 8 months ago Ruco
      Keymaster

      Hello,

      You can select simple header style and transparent header. The menu style with brackets on hovers is removed from the theme.

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant

      Ok,

      that’s a pity, the brackets were cool. Any chance you will enable them again?

    • 10 years, 8 months ago Mirela
      Participant

      Hello,

      Sorry that will not be added again. But if you want it, just add these lines into your custom css box:

      .header_1 nav .menu > li > a::before {
      margin-right: 10px;
      content: '[';
      -webkit-transform: translateX(20px);
      -moz-transform: translateX(20px);
      transform: translateX(20px);
      }
      .header_1 nav .menu > li > a::after {
      margin-left: 10px;
      content: ']';
      -webkit-transform: translateX(-20px);
      -moz-transform: translateX(-20px);
      transform: translateX(-20px);
      }

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant

      Thanks!

      Which header style should I use in this case? This CSS is not working currently with my chosen header style.

    • 10 years, 8 months ago Ruco
      Keymaster

      Hello,

      Select header simple style, the first header style. Let us know if it still doesn’t work.

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant
      This reply has been marked as private.
    • 10 years, 8 months ago Mirela
      Participant

      Hello,

      I found this css of your menu:

      .header_1 nav .menu > li > a::before {
      margin-right: 12px;
      content: '';
      }

      but the ‘content’ is empty. Please edit it to this:

      .header_1 nav .menu > li > a::before {
      margin-right: 12px;
      content: '[';
      }

      Then do the same with this code:

      .header_1 nav .menu > li > a::after {
      margin-left: 12px;
      content: "";
      }

      edit to this:

      .header_1 nav .menu > li > a::after {
      margin-left: 12px;
      content: "]";
      }

      Result screenshot.
      If still no luck, then send us your wp credentials, so we can do it for you.

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant

      Hi there.

      I actually have the code exactly as you replied in my custom CSS box (I have no idea, why it shows without ‘[‘ and ‘]’ for you):

      .header_1 nav .menu > li > a::before {

      margin-right: 10px;

      content: ‘[‘;

      -webkit-transform: translateX(20px);

      -moz-transform: translateX(20px);

      transform: translateX(20px);

      }

      .header_1 nav .menu > li > a::after {

      margin-left: 10px;

      content: ‘]’;

      -webkit-transform: translateX(-20px);

      -moz-transform: translateX(-20px);

      transform: translateX(-20px);

      }

    • 10 years, 8 months ago Mirela
      Participant

      Hello,

      Can you please post your wp credentials in a private reply? So i can give a closer look.

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant
      This reply has been marked as private.
    • 10 years, 8 months ago Mirela
      Participant

      Hello,

      Sorry for the late reply.
      I added this code:

      /* Effect 1: Brackets */
      .header_1 nav .menu > li > a::before,
      .header_1 nav .menu > li > a::after {
        display: inline-block;
        opacity: 0;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
        -moz-transition: -moz-transform 0.3s, opacity 0.2s;
        transition: transform 0.3s, opacity 0.2s;
      }
      
      .header_1 nav .menu > li > a::before {
        margin-right: 10px;
        content: '[';
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        transform: translateX(20px);
      }
      
      .header_1 nav .menu > li > a::after {
        margin-left: 10px;
        content: ']';
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        transform: translateX(-20px);
      }
      
      .header_1 nav .menu > li > a:hover::before,
      .header_1 nav .menu > li > a:hover::after,
      .header_1 nav .menu > li > a:focus::before,
      .header_1 nav .menu > li > a:focus::after {
        opacity: 1;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
      }
      .header_1 nav .menu > li:last-child a{padding-right:0; margin-right:0;}
      .sticky_header .header_wrapper.header_1{
        -moz-box-shadow: 0 3px 5px rgba(0,0,0,0.04);
        -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.04);
        box-shadow: 0 3px 5px rgba(0,0,0,0.05);
      }

      Into your custom css box and removed the previous one. Now it’s ok.

      Best regards!

    • 10 years, 8 months ago Most spectacular
      Participant

      Thanks! :)

    • 9 years, 9 months ago adrianmassey
      Participant

      Expired

      Hi Mihaila,
      I have exactly the same question and have tried simply pasting the entire css code from your last post below the existing css in the custom css box.  But nothing changes.

      Have I misunderstood the instructions, or is there something else I need to do?

      Many thanks!

    • 9 years, 9 months ago Mirela
      Participant

      Hello,


      @adrianmassey
      ,
      Please send us your site’s url. So we can give a closer look at what still need’s to be done.

      Best regards!

    • 9 years, 9 months ago adrianmassey
      Participant

      Expired

      This reply has been marked as private.
    • 9 years, 9 months ago Mirela
      Participant

      Hello,

      Please add the above code at the end of your style.css file. If you still can not make it show, send us your wp credentials in a private reply. So we can do it for you.

      Best regards!

    • 9 years, 9 months ago adrianmassey
      Participant

      Expired

      Thanks Mihaila, that’s great!  Working fine now.

Viewing 17 reply threads

You must be logged in to reply to this topic.

Login

Log In
Register

Renew Support

  • Renew Specular Support
  • Renew Tower Support
  • Renew Folie Support
  • Renew Handel Support
  • Renew June Support
  • Renew Picante Support
  • Renew Thype Support
  • Renew Regn Support

Search Forums

Forums

  • Bygge – Construction Theme
  • Converta – Software Theme
  • Folie – The WordPress Website Builder
  • Handel – Responsive Multi-Purpose Business Theme
  • June WooCommerce WordPress Theme
  • Livecast – Podcast Theme
  • Picante – Restaurant & Food WordPress Theme
  • Regn | Agency & Business WordPress Theme
  • Remake – Minimal Portfolio & Agency Theme
  • Specular – Multi-Purpose WordPress Theme
  • Suggest us Features
  • Tower – Business-Driven Multipurpose WP Theme
  • Vibrance – Photography Theme

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password