Overwrite Float:left Property In Span
I want the submit button to appear below the map. I can achieve this by deactivating float:left. How could I achieve this? I tried overwriting the properties of .
Solution 1:
Using custom css (in a custom css file or in the header), you can override the float:left
by adding:
#id_Location_span_map {
float: none!important;
}
Post a Comment for "Overwrite Float:left Property In Span"