Reply To: Modify Container Size and Menu Locations

Support Forums Cian – WP Theme Modify Container Size and Menu Locations Reply To: Modify Container Size and Menu Locations

#5621
CreaboxThemes
Keymaster

Hi,

I have checked your image attached adn you have to change the code a lot to get that.

  1. If you want to add a new menu to the footer, you have to set up your file functions.php. Look for the function cian_theme_setup() and add the next code at the end of the function:

    register_nav_menus(
         array(
              'footer-navigation' => __( 'Footer Navigation', 'cian' )
         )
    );
  2. If you want that effect, add the next code to your file styles.css:

    .horizontalMenu .menu li a:before{
         content: '';
         display: block;
         position: absolute;
         width: 100%;
         height: 1px;
         background: #5d5d5d;
         bottom: 10px;
         left: 0px;
         -webkit-transition: all 0.3s;
         -moz-transition: all 0.3s;
         -ms-transition: all 0.3s;
         -o-transition: all 0.3s;
         transition: all 0.3s;
    }
    .horizontalMenu .menu li a:hover:before{
         height: 5px;
    }
  3. Sorry but I don’t understand you. What blank spaces do you mean?
  4. You have to add the next code to your file styles.css:

    #box{
         width: 50%;
         float: right;
    }

If you want, I can help you in exchange of a cost. The cost for this changes would be 20$.

Regards