How do I make header bar opaque

How do I make header bar opaque

I have a page with a header bar that contains the HTML title and a Home button. On a long page that scrolls, the header stays in the same place and the text scrolls under it, which is what I want. But the header is transparent and the text is visible under the header as it scrolls past. I want an opaque header, what do I need to change in CSS?

I'm using JQM 1.4.5. The top part of my HTML looks like this:

  1. <!DOCTYPE html SYSTEM "about:legacy-compat">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>My title</title>
  7. <link rel="stylesheet" href="js/jquery.mobile-1.4.5.min.css">
  8. <script src="js/jquery-1.11.3.min.js"></script>
  9. <script src="js/jquery.mobile-1.4.5.min.js"></script>
  10. </head>
  11. <body>
  12. <div data-content-theme="c" data-role="page" lang="en-us">
  13. <div data-role="header" data-position="fixed" data-theme="c">
  14. <h1 class="title topictitle1">My topic</h1>
  15. <div class="ui-btn-left">
  16. <a href="index.html" data-role="button" title="Home" data-icon="home" rel="external" data-iconpos="notext"></a>
  17. </div>
  18. </div>
  19. <main role="main">
  20. <article role="article">
  21. <div class="body conbody"> 
  22. <section class="section"> 
  23. <figure class="fig fignone">
  24. <img class="image" src="C047CCBF1E02-low.png">
  25.  <p class="p">Definition of the serial number.</p>
  26.                  ...
  27.  
Thanks,
Mark