-3

I am trying to increase the size of the right side of the header because when I write telephone number then it relocate and come to more than one line.

Can you please check it here

  • 1
    Your question is not solvable without providing related code (part responsible for the `topbar`) in your question. – nmr Mar 14 '19 at 20:39
  • Now that you have removed the content behind the link, it becomes even more problematic. You should include the relevant code *in* your question. – trincot Mar 15 '19 at 06:01

2 Answers2

0

Change the CSS class 'container' to 'container-fluid' just below the 'topbar div'. It will distribute the available width in a more dynamic way. See this Q&A for the difference between those two styles.

trincot
  • 317,000
  • 35
  • 244
  • 286
Edward
  • 13
  • 4
0

To avoid wrapping, you could use white-space:nowrap;. In your case, the phone number is placed in a span that has the call style. So in your style.css file find the call class definition add this style to it:

.topbar span.call {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space:nowrap;
}
trincot
  • 317,000
  • 35
  • 244
  • 286