Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

delete the space preceding a caret

Home Forums Older releases 0.9.x delete the space preceding a caret

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1421
    goatberg
    Participant

    Hi,

    I have noticed there is a space between a menu item and the down caret that signifies more menu items below a horizontal navigation menu listing.

    Is it possible to eliminate the space that is between the menu item and the trailing caret?

    Thanks

    #1834
    admin
    Keymaster

    Hi,

    Sorry for the delay of this answer, I can see you have figured out and tweaked the rule in “jquery.smartmenus.bootstrap.css” that controls this:

    .navbar-nav .sub-arrow, .navbar-nav .collapsible .sub-arrow {
    	position:static;
    	margin-top:0;
    	margin-right:0;
    	margin-left:6px;
    	display:inline-block;
    	width:0;
    	height:0;
    	overflow:hidden;
    	vertical-align:middle;
    	border-top:4px solid;
    	border-right:4px dashed transparent;
    	border-bottom:4px dashed transparent;
    	border-left:4px dashed transparent;
    }

    By default the space is equal to that of the regular Bootstrap carets.

    Cheers!

    #1835
    goatberg
    Participant

    Hi,

    Thanks for the reply. Yes I did get very lucky when attempting to shift through the CSS files that I ran into it right off the bat at the very top of the file. The good commenting in the CSS file was very helpful.

    Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘0.9.x’ is closed to new topics and replies.