CMS Development

Jlawal
Colaborador líder

Menu alignment

resolver

Hello all,

 

I am trying to get the 'Get app' in the top menu to float to the right, above the customer login button, but it is stubbornly floating to the left.

 

Do you know why it is doing this and how i can get it to float to the right?

 

Any help would be greatly appreciated.

 

Many thanks,

Jamila

0 Me gusta
1 Soluciones aceptada
Jsum
Solución
Asesor destacado

Menu alignment

resolver

@Jlawal,

 

The element you are attempting to float right is set to 100% of its containers width so it has no where to move.

Instead of Float: right; as your inline styling on that element, try text-align: right;. The outer most wrapping around your text, that is not 100% width, is a span tag. Span tags are inline items so the are effected by text rules like alignment, and inherit from their parents. Setting the raw html container's inline styles to "text-align: right;" does what you need.

 

 

Need help? Hire Us Here

Ver la solución en mensaje original publicado

3 Respuestas 3
Anonymous
No aplicable

Menu alignment

resolver

Hi @Jlawal,

You can add this CSS,

 

.top-header {
    text-align: right;
}
Jsum
Solución
Asesor destacado

Menu alignment

resolver

@Jlawal,

 

The element you are attempting to float right is set to 100% of its containers width so it has no where to move.

Instead of Float: right; as your inline styling on that element, try text-align: right;. The outer most wrapping around your text, that is not 100% width, is a span tag. Span tags are inline items so the are effected by text rules like alignment, and inherit from their parents. Setting the raw html container's inline styles to "text-align: right;" does what you need.

 

 

Need help? Hire Us Here

Jlawal
Colaborador líder

Menu alignment

resolver

Thank you for that breakdown @Jsum

 

That works perfectly and your solution makes sense. I'm going to keep inline styles in containers going forward! Robot feliz