i have displayed items in a submenu using a display:block css propery.
the display:block property created a list of items in english that are left-to-right.
i translated them to Hebrew, which is right-to-left but the text stayed on the left.
i need to make the display:block text stick to the right side (right-to-left).
i tried:
direction:rtl;
text-align:right
and even float:right
nothing effect the display:block.
how can i make a disply:block have text right-to-left
Without seeing the HTML and CSS, I can only guess. Try viewing the page using a debugging tool, like Firebug for Firefox, or the Chrome/Safari debugger. I think you'll find that a CSS selector defining some of these styles is taking precedence over the styles you are editing.
Bookmarks