• i hav set it as shown in shortcode params: heights="title:1.5em"
    but the html reads

    <div id="wordpress_file_upload_title_2" class="file_div_clean_responsive" style="">
       <span class="file_title_clean" style="height: 1.5em; ">if you suggested a location above, you may upload a geo-located image</span>
       <div class="file_space_clean"></div>
       <script type="text/javascript">wfu_run_js("GlobalData.WFU[2].title", "init");</script>
    </div>

    which doesn’t work as intended:-\ shouldn’t it read
    <div id="wordpress_file_upload_title_2" class="file_div_clean_responsive" style="height: 1.5em;">

Viewing 1 replies (of 1 total)
  • Plugin Author nickboss

    (@nickboss)

    Hi, this is the way the plugin works. It adds the height setting in the span element, not the wrapping div.

    If you want to change it in the wrapping div, you can do it will css:

    #wordpress_file_upload_title_2 {
    height: 1.5em;
    }

    You can add it in Custom CSS area of your theme.

    With css you can do a lot more than just setting the height.

    Nickolas

Viewing 1 replies (of 1 total)

The topic ‘title height bolloxed’ is closed to new replies.