Right Align Before Menu Text

Support Area Forums Mise En Place Right Align Before Menu Text

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://
  • Author
    Posts
  • #37081
    chowsir88
    Participant

    Hello Bill

    For the beverages we are serving by glass and bottle of wine and I inserted Glass | Bottle Before List Text of Menu Group, if possible that can be move the Glass | Bottle to right side above the prices and it can be done on CSS Styles? See the link http://www.newcantonbistro.com/beverages.

    Ricky

    #37082
    Bill Robbins
    Moderator

    Hi Ricky,

    Good question there. You can add this snippet to the Custom CSS box that’s in the advanced section of the customizer:

    
    .before-list-text {
    	text-align: right;
    }
    

    That will shift all of the before list text to the right. If you only want to move a select number of them to the right, I would do this. In the settings for any row there is a field where you can add a css class to that row. In the rows where you want to align the before text to the right, add this:

    
    before-list-right
    

    as the class. Then in the Custom CSS, add this:

    
    .before-list-right .before-list-text {
    	text-align: right;
    }
    

    and save your changes. Now whenever you need to align the text to the right, you can add that class to the row. That will give you a bit more flexibility if you need some rows left and other right.

    If you run into trouble, let me know.

    Thanks,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Right Align Before Menu Text’ is closed to new replies.