CINXE.COM

Subscriptions and Advertising

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSRF Token --> <meta name="csrf-token" content="8GnkLiIGFlCKwzEggwG875xUqLM9CuYQ3VllwiE2"> <title>Subscriptions and Advertising</title> <!-- custom meta --> <!-- favicon and manifest --> <link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <!-- google fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;0,800;1,400;1,600;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,800;1,300;1,400;1,600;1,800&display=swap" rel="stylesheet"> <!-- Scripts --> <script src="https://www.tshaonline.org/js/app.js"></script> <!-- Fonts --> <link rel="stylesheet" href="/css/font-awesome-4.7.0/css/font-awesome.min.css"> <!-- Styles: --> <!-- style: app styles --> <link href="https://www.tshaonline.org/css/app.css" rel="stylesheet"> <!-- style: app overrides --> <link href="https://www.tshaonline.org/css/style.css?v=3.8" rel="stylesheet"> <!-- temp countdown styles --> <style> .clock-text.badge { font-size: 1.5rem; } @media (min-width: 992) { .clock-text.badge { font-size: 1.62rem; } } .cta-btn { display: block; width: 100%; max-width: 350px; margin: 0 15px 0 15px; padding: 15px 20px; text-align: center; border-radius: 8px; font-weight: bold; transition: all 0.3s ease-in-out; text-decoration: none; } .cta-btn .cta-heading { display: block; font-size: 1.175rem; font-weight: bold; text-transform: uppercase; } .cta-btn .cta-subheading { display: none; font-size: 0.9rem; font-weight: normal; opacity: 0.8; } .cta-btn-primary { background-color: #007bff; color: white; } .cta-btn-danger { background-color: #dc3545; color: white; } .cta-btn:hover { transform: scale(1.05); opacity: 0.9; color: white !important; } @media (min-width: 576px) { } @media (min-width: 775px) { .cta-btn .cta-heading { font-size: 1.5rem; } .cta-btn .cta-subheading { display: block; } } .gradient-blue-bg { background-image: linear-gradient( 0deg, hsl(202deg 100% 21%) 0%, hsl(203deg 100% 22%) 28%, hsl(204deg 100% 24%) 44%, hsl(204deg 100% 25%) 53%, hsl(205deg 100% 26%) 60%, hsl(206deg 100% 28%) 64%, hsl(206deg 100% 29%) 69%, hsl(207deg 100% 31%) 73%, hsl(208deg 100% 32%) 78%, hsl(208deg 100% 34%) 83%, hsl(209deg 100% 35%) 88%, hsl(209deg 100% 37%) 94%, hsl(211deg 92% 40%) 100% ); } </style> </head> <body class="bg-newspaper" > <div id="top"></div> <div id="app"> <!-- begin: temp countdown --> <div id="countdown-container" class="container-fluid gradient-blue-bg pb-4 border-bottom no-print"> <div class="container-fluid limit-width-xl"> <div class="row"> <div class="col-12 text-center"> <span class="h4 sans-serif-font text-white d-block my-3"> <a class="text-white" href="https://am.tsha.events">Join us for an unforgettable experience at our Annual Meeting in Houston!</a> </span> </div> <div class="col-12 text-center"> <div class="py-3"> <div id="countdown">Loading...</div> </div> <span class="h5 sans-serif-font text-white d-block mb-3"> Explore the Journey of Texas Rangers: Then and Now! </span> </div> <div class="col-12"> <div class="d-flex justify-content-center" style="gap: 0.62rem;"> <a href="https://am.tsha.events/sessions/texas-rangers-making-history-for-more-than-two-centuries/" class="cta-btn cta-btn-primary"> <span class="cta-heading">View Session&nbsp;&rarr;</span> <span class="cta-subheading">Experience a riveting exploration of an iconic force in Texan lore.</span> </a> <a href="https://tsha.wildapricot.org/event-5842921" class="cta-btn cta-btn-danger"> <span class="cta-heading">Register Today &rarr;</span> <span class="cta-subheading">Time is running out!</span> </a> </div> </div> </div> </div> </div> <!-- end: temp countdown --> <script> // Set the target date to February 27, 2025 const targetDate = new Date("February 27, 2025 00:00:00").getTime(); function updateCountdown() { const now = new Date().getTime(); const diff = targetDate - now; // Difference in milliseconds if (diff <= 0) { document.getElementById("countdown").innerHTML = `<span class="text-danger font-weight-bold">Time's up!</span>`; return; } const days = Math.floor(diff / (1000 * 60 * 60 * 24)); const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((diff % (1000 * 60)) / 1000); document.getElementById("countdown").innerHTML = ` <span class="badge badge-dark border border-white px-2 py-3 mx-1 mb-3 clock-text" style="width:5ch;">${days}d</span> <span class="badge badge-dark border border-white px-2 py-3 mx-1 mb-3 clock-text" style="width:5ch;">${hours}h</span> <span class="badge badge-dark border border-white px-2 py-3 mx-1 mb-3 clock-text" style="width:5ch;">${minutes}m</span> <span class="badge badge-dark border border-white px-2 py-3 mx-1 mb-3 clock-text" style="width:5ch;">${seconds}s</span> `; } // Update countdown every second setInterval(updateCountdown, 1000); updateCountdown(); // Initial call to prevent 1-second delay </script> <div id="primary-site-header" class="container-fluid bg-blue-500 no-print"> <div class="container-fluid limit-width-xl"> <div class="row"> <div class="col-12 px-lg-0"> <nav class="megamenu-navbar navbar navbar-expand-lg d-flex flex-wrap flex-lg-nowrap has-sitewide-notification"> <a href="https://www.tshaonline.org/home" class="megamenu-logo-link d-block"> <img src="https://www.tshaonline.org/images/logo--tsha--fff.png" alt="TSHA logo" height="140" class="megamenu-logo-img img-fluid"> </a> <!-- sitewide notifications --> <div id="sitewide-notification" class="sitewide-notification text-white small pl-0 px-sm-4 pt-3 pt-sm-0 pt-lg-2 pl-lg-5 pr-lg-2 px-xl-5 ml-sm-auto ml-lg-0"> <div class="sitewide-notification-wrapper mx-auto"> <p>Get your copy of <strong><a href="https://www.legacyoftexas.com/product/eleven-days-on-the-colorado-the-standoff-between-the-texian-and-mexican-armies-and-the-pivotal-battle-unfought"><em>11 Days on the Colorado</em></a></strong> today for <strong>ONLY $35</strong>!&nbsp;&nbsp;</p> </div> </div> <button class="navbar-toggler border-white p-3 mx-auto ml-sm-auto mr-sm-0 mb-2 no-print" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> <i class="fa fa-bars text-white"></i> </button> <div class="collapse navbar-collapse" id="navbarNavDropdown"> <ul class="navbar-nav ml-auto sans-serif-font align-items-center"> <!-- handbook --> <li class="nav-item d-lg-none mt-4"> <a href="https://www.tshaonline.org/handbook" class="text-white nav-link primary-link"> Handbook of Texas </a> </li> <!-- about --> <li class="nav-item d-lg-none"> <a href="https://www.tshaonline.org/about" class="text-white nav-link primary-link"> About Us </a> </li> <!-- publications --> <li class="nav-item d-lg-none"> <a href="https://www.tshaonline.org/publications" class="text-white nav-link primary-link"> Publications </a> </li> <!-- support tsha --> <li class="nav-item d-lg-none"> <a href="https://tsha.wildapricot.org" class="primary-link text-white nav-link search-link" style="font-weight: 600;"> Support TSHA <i class="fa fa-external-link pl-2" aria-hidden="true"></i> </a> </li> <!-- site search --> <li class="nav-item d-lg-none"> <a href="https://www.tshaonline.org/search" class="primary-link text-white nav-link search-link"> <i class="fa fa-search pr-2"></i> Search </a> </li> <!-- megamenu-handbook --> <li class="nav-item dropdown megamenu d-none d-lg-block"> <a id="handbook" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="primary-link text-light text-center nav-link dropdown-toggle "> Handbook <span class="d-lg-none d-3xl-inline-block">of Texas</span> </a> <div aria-labelledby="handbook" class="dropdown-menu border-0 p-0 m-0"> <div class="container px-5"> <div class="row bg-white rounded-0 m-0 pr-3 shadow-custom"> <div class="col-lg-9"> <div class="p-3 p-lg-4"> <div class="row"> <div class="col-12 col-md-6 mb-4"> <h6 class="font-weight-bold text-uppercase mb-2"> Handbook of Texas </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://www.tshaonline.org/handbook" class="nav-link mt-1 py-0">Welcome / Homepage</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/browse/all" class="nav-link mt-1 py-0">Browse Entries</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/texas-day-by-day" class="nav-link mt-1 py-0">Texas Day by Day</a></li> </ul> </div> <div class="col-12 col-md-6 mb-4"> <h6 class="font-weight-bold text-uppercase mb-2"> Show Your Support </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://tsha.wildapricot.org" class="nav-link mt-1 py-0">Join TSHA <i class="fa fa-external-link pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://tsha.wildapricot.org/donate" class="nav-link mt-1 py-0">Make a Donation <i class="fa fa-external-link pl-2" aria-hidden="true"></i></a></li> </ul> </div> <div class="col-12 col-md-6 mb-4"> <h6 class="font-weight-bold text-uppercase mb-2"> Special Projects </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/handbook-of-dallas-fort-worth" class="nav-link mt-1 py-0">Dallas-Fort Worth</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/texas-medicine" class="nav-link mt-1 py-0">Texas Medicine</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/texas-women" class="nav-link mt-1 py-0">Texas Women</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/texas-music" class="nav-link mt-1 py-0">Texas Music</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/tejano-history" class="nav-link mt-1 py-0">Tejano History</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/african-american-texas" class="nav-link mt-1 py-0">African American Texas</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/civil-war-texas" class="nav-link mt-1 py-0">Civil War Texas</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/handbook/projects/houston" class="nav-link mt-1 py-0">Houston</a></li> </ul> </div> <div class="col-12 col-md-6 mb-4"> <h6 class="font-weight-bold text-uppercase mb-2"> Help Topics </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://www.tshaonline.org/about/faq" class="nav-link mt-1 py-0">Frequently Asked Questions (FAQ)</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-staff" class="nav-link mt-1 py-0">Contact Handbook Staff</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-author-agreement-form" class="nav-link mt-1 py-0">Author Agreement Form</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-author-exit-survey" class="nav-link mt-1 py-0">Author Exit Survey</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-topic-suggestion" class="nav-link mt-1 py-0">Topic Suggestion</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-proposal" class="nav-link mt-1 py-0">Propose an Entry</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-revision" class="nav-link mt-1 py-0">Revision Request</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/handbook-entry-error" class="nav-link mt-1 py-0">Report an Error</a></li> </ul> </div> </div> </div> </div> <div class="col-lg-3 px-3 d-none d-lg-block" style="background: center center url('/images/handbook/handbook-home.png') no-repeat; background-size: contain;"> </div> </div> </div> </div> </li> <!-- megamenu-publications --> <li class="nav-item dropdown megamenu d-none d-lg-block"> <a id="publications" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="primary-link text-light text-center nav-link dropdown-toggle "> Publications </a> <div aria-labelledby="publications" class="dropdown-menu border-0 p-0 m-0"> <div class="container px-5"> <div class="row bg-white rounded-0 m-0 pr-3 shadow-custom"> <div class="col-lg-9"> <div class="p-3 p-lg-4"> <div class="row"> <div class="col-md-6 mb-1"> <h6 class="font-weight-bold text-uppercase"> <a class="text-dark" href="https://www.legacyoftexas.com/">Legacy of Texas<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a> </h6> <ul class="list-unstyled mb-4"> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/books/tsha-press" class="nav-link mt-1 py-0">TSHA Press</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-tag/texas-almanac" class="nav-link mt-1 py-0">Texas Almanac</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/journals" class="nav-link mt-1 py-0">SHQ</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/books/collectible-books" class="nav-link mt-1 py-0">Rare & Collectible</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/books/preowned-books" class="nav-link mt-1 py-0">Preowned Books</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/maps" class="nav-link mt-1 py-0">Texas Maps</a></li> <li class="nav-item"><a href="https://www.legacyoftexas.com/product-category/texas-art" class="nav-link mt-1 py-0">Texas Art</a></li> </ul> <h6 class="font-weight-bold text-uppercase"> Publications </h6> <ul class="list-unstyled mb-0"> <li class="nav-item"><a href="https://www.tshaonline.org/publications" class="nav-link mt-1 py-0">Browse All</a></li> </ul> </div> <div class="col-md-6 mb-1"> <h6 class="font-weight-bold text-uppercase"> TSHA Press Help Topics </h6> <ul class="list-unstyled mb-5 pb-1"> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/tsha-press-staff" class="nav-link mt-1 py-0">Contact TSHA Press</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/help-topics/tsha-press/information-for-authors" class="nav-link mt-1 py-0">Information for Authors</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/help-topics/tsha-press/order-information" class="nav-link mt-1 py-0">Ordering Information</a></li> </ul> <h6 class="font-weight-bold text-uppercase"> <abbr title="Southwestern Historical Quarterly">SHQ</abbr> Help Topics </h6> <ul class="list-unstyled mb-0"> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact/shq-staff" class="nav-link mt-1 py-0">Contact SHQ Staff</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/help-topics/shq/subscriptions-and-advertising" class="nav-link mt-1 py-0">Subscriptions & Advertising</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/help-topics/shq/information-for-authors" class="nav-link mt-1 py-0">Information for Authors</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/help-topics/shq/information-for-reviewers" class="nav-link mt-1 py-0">Information for Reviewers</a></li> </ul> </div> </div> </div> </div> <div class="col-lg-3 px-3 d-none d-lg-block"> <h6 class="font-weight-bold text-uppercase pt-4"> <a class="text-dark" href="https://www.legacyoftexas.com/product/eleven-days-on-the-colorado-the-standoff-between-the-texian-and-mexican-armies-and-the-pivotal-battle-unfought">New Release<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a> </h6> <figure class="mt-2"> <a href="https://www.legacyoftexas.com/product/eleven-days-on-the-colorado-the-standoff-between-the-texian-and-mexican-armies-and-the-pivotal-battle-unfought"> <img src="https://www.tshaonline.org/images/publications/book-cover--11-days-on-the-colorado.jpg" alt="New Release" class="img-fluid"> </a> <figcaption class="text-center"> <a href="https://www.legacyoftexas.com/product/eleven-days-on-the-colorado-the-standoff-between-the-texian-and-mexican-armies-and-the-pivotal-battle-unfought"><em>11 Days on the Colorado</em>, by <br> James E. Basher</a> </figcaption> </figure> </div> </div> </div> </div> </li> <!-- megamenu-about-us --> <li class="nav-item dropdown megamenu d-none d-lg-block"> <a id="about-us" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="primary-link text-light text-center nav-link dropdown-toggle "> About <span class="d-lg-none d-3xl-inline-block">Us</span> </a> <div aria-labelledby="about-us" class="dropdown-menu border-0 p-0 m-0"> <div class="container px-5"> <div class="row bg-white rounded-0 m-0 pr-3 shadow-custom"> <div class="col-lg-9"> <div class="p-3 p-lg-4"> <div class="row"> <div class="col-md-6 mb-5"> <h6 class="font-weight-bold text-uppercase"> <a href="https://www.tshaonline.org/about" class="nav-link mt-1 py-0 text-dark">About Us</a> </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://www.tshaonline.org/about" class="nav-link mt-1 py-0">Welcome / About TSHA</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/sponsors" class="nav-link mt-1 py-0">Sponsors &amp; Contributors</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/awards" class="nav-link mt-1 py-0">Award &amp; Fellowship Opportunities</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/contact" class="nav-link mt-1 py-0">Contact Us</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/faq" class="nav-link mt-1 py-0">Frequently Asked Questions</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/press" class="nav-link mt-1 py-0">Information for the Press</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/#policies" class="nav-link mt-1 py-0">Policies &amp; Financials</a></li> </ul> </div> <div class="col-md-6 mb-5"> <h6 class="font-weight-bold text-uppercase"> <a href="https://www.tshaonline.org/events" class="nav-link mt-1 py-0 text-dark">Events</a> </h6> <ul class="list-unstyled mb-4"> <li class="nav-item"><a href="https://am.tsha.events/" class="nav-link mt-1 py-0">Annual Meeting<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://www.sanjacintosymposium.com/" class="nav-link mt-1 py-0">San Jacinto Symposium<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://www.mytsha.com/digital-library/collections/texas-talks" class="nav-link mt-1 py-0">Texas Talks<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> </ul> <h6 class="font-weight-bold text-uppercase pt-2"> <a href="https://tsha.wildapricot.org" class="nav-link mt-1 py-0 text-dark">Members</a> </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://tsha.wildapricot.org" class="nav-link mt-1 py-0">Login<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://tsha.wildapricot.org/members-only" class="nav-link mt-1 py-0">Members Only<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> </ul> </div> <div class="col-md-6 mb-2"> <h6 class="font-weight-bold text-uppercase"> <a href="https://www.tshaonline.org/about/#people-of-tsha" class="nav-link mt-1 py-0 text-dark">People of TSHA</a> </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://www.tshaonline.org/about/#board" class="nav-link mt-1 py-0">Board of Directors</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/#staff" class="nav-link mt-1 py-0">Staff &amp; Volunteers</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/#committees" class="nav-link mt-1 py-0">Committees</a></li> <li class="nav-item"><a href="https://www.tshaonline.org/about/people" class="nav-link mt-1 py-0">Browse all</a></li> </ul> </div> <div class="col-md-6 mb-2"> <h6 class="font-weight-bold text-uppercase"> <a href="https://www.tshaonline.org/education" class="nav-link mt-1 py-0 text-dark">Education</a> </h6> <ul class="list-unstyled"> <li class="nav-item"><a href="https://juniorhistorians.club/" class="nav-link mt-1 py-0">Junior Historians of Texas<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://webbsociety.club/" class="nav-link mt-1 py-0">Walter Prescott Webb Historical Society<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> <li class="nav-item"><a href="https://texashistoryday.com/" class="nav-link mt-1 py-0">Texas History Day (THD)<i class="fa fa-external-link small pl-2" aria-hidden="true"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-lg-3 px-3 d-none d-lg-block"> <h6 class="font-weight-bold text-uppercase pt-4"> Become a Member </h6> <figure class="mt-2"> <a href="https://tsha.wildapricot.org"> <img src="https://www.tshaonline.org/images/about/bg--megamenu--about-us-flag.jpg?v=1" alt="New Release" class="img-fluid" title="Photo by Naassom Azevedo on Unsplash"> </a> <figcaption style="font-size: 0.925rem;"> <p class="font-italic"> <a href="https://tsha.wildapricot.org">Join our growing community of academics, professionals, and history enthusiasts of all levels and ages.</a> </p> </figcaption> </figure> </div> </div> </div> </div> </li> <!-- site search --> <li class="nav-item mr-lg-0 d-none d-lg-block"> <a href="https://www.tshaonline.org/search" class="primary-link text-white nav-link search-link "> <i class="fa fa-search pr-2" aria-label="Search"></i> <span class="d-lg-none d-2xl-inline-block">Search</span> </a> </li> <!-- support tsha --> <li class="nav-item d-none d-xl-custom-1108-block" style="margin-left: -0.62rem !important;"> <span class="text-white" aria-hidden="true">|</span> <a href="https://tsha.wildapricot.org" class="primary-link text-white nav-link search-link ml-0" style="font-weight: 600;"> Support <span class="d-none d-xl-custom-1580-inline">TSHA</span> </a> </li> </ul> </div> </nav> </div> </div> </div> </div> <div class="container"> <div class="row justify-content-center"> <div class="col-12"> <!-- breadcrumb --> <nav aria-label="breadcrumb"> <ol class="breadcrumb mt-2 px-0 px-md-3"> <li class="breadcrumb-item"> <a href="https://www.tshaonline.org/home" class="breadcrumb-link"> Home </a> &rarr; </li> <li class="breadcrumb-item"> <a href="https://www.tshaonline.org/help-topics" class="breadcrumb-link"> Help Topics </a> &rarr; </li> <li class="breadcrumb-item"> <a href="https://www.tshaonline.org/help-topics/shq" class="breadcrumb-link"> Southwestern Historical Quarterly (SHQ) </a> &rarr; </li> </ol> </nav> <main class="pb-5"> <div class="row justify-content-between mb-5 full-width-p mt-3"> <!-- main --> <div class="col-12 col-md-8 col-lg-7"> <h1 class="mb-4 text-2xl" style="color: #28425d;"> Subscriptions &amp; Advertising </h1> <p class="serif-font"> The <em>Southwestern Historical Quarterly</em> (SHQ) is offered as a benefit of membership of the Texas State Historical Association (TSHA). You may join TSHA by visiting <a href="https://tsha.wildapricot.org">https://tsha.wildapricot.org <i class="fa fa-external-link small" aria-hidden="true"></i></a>. </p> <h2 class="mt-5"> Subscription Rates </h2> <p> $100 Institutional Available to Universities, Museums, and Libraries only. For foreign institutions, add $20. Institutional benefits include: a subscription to the <em>Southwestern Historical Quarterly</em>, <em>Riding Line</em> newsletter, and a paperback copy of the most recent edition of the <em>Texas Almanac</em>. If you have any questions about institutional membership, please contact our membership department using our <a class="sans-serif-font" href="https://www.tshaonline.org/about/contact">departmental contact form</a> or give us a call at 512-471-3270. </p> <h2 class="mt-5"> Single Issues </h2> <p> For individual copies, please <a class="sans-serif-font" href="https://www.tshaonline.org/about/contact/shq-staff">contact us</a> or visit your local library. </p> <h2 class="mt-5"> Advertising Information </h2> <table class="table table-striped"> <thead> <tr> <th> Format </th> <th> Rate </th> <th> Size (in) </th> </tr> </thead> <tbody> <tr> <td> Full page </td> <td> $300 </td> <td> 4.5" x 7.5" </td> </tr> <tr> <td> Half page horizontal </td> <td> $225 </td> <td> 4.5" x 3.75" </td> </tr> <tr> <td> Back cover (B&W) </td> <td> $375 </td> <td> 4.5" x 7.5" </td> </tr> <tr> <td> Back cover (color) </td> <td> $450 </td> <td> 4.5" x 7.5" </td> </tr> </tbody> </table> <h3> Notes: </h3> <ul> <li> Trim size: 6" x 9" (in) </li> <li> Halftones: 133 line screen </li> <li> All ads must be provided as PDFs </li> <li> Bills are due within 30 days from the invoice date. </li> </ul> <h3> Deadlines for each issue </h3> <ul> <li> July: April 15 </li> <li> October: July 15 </li> <li> January: October 15 </li> <li> April: January 15 </li> </ul> <p> For more information, please <a class="sans-serif-font" href="https://www.tshaonline.org/about/contact/shq-staff"> contact us </a>. </p> </div> <!-- sidebar --> <div class="col-12 col-md-4"> <p> <span class="list-group-item bg-transparent border-0"> <a class="" href="https://www.tshaonline.org/about/contact/shq-staff"> <i class="fa fa-envelope pr-2" aria-hidden="true"></i> Contact SHQ Staff </a> </span> </p> <div class="card mb-5 serif-font" role="navigation"> <h5 class="h2 card-header"> Help Topics </h5> <div class="help-link-content"> <ul class="nav flex-column list-group list-group-flush"> <li class="nav-item list-group-item"> <em> Subscriptions and Advertising </em> </li> <li class="nav-item list-group-item"> <a class="" href="https://www.tshaonline.org/help-topics/shq/information-for-authors"> Information for Authors </a> </li> <li class="nav-item list-group-item"> <a class="" href="https://www.tshaonline.org/help-topics/shq/information-for-reviewers"> Information for Reviewers </a> </li> </ul> </div> </div> </div> </div> </main> </div> </div> </div> <div class="pre-footer container-fluid bg-fff border-top border-bottom no-print"> <div class="row justify-content-between align-items-center pt-5 pt-md-0"> <div class="col-12 col-md-4 text-center"> <a href="https://www.tshaonline.org/home"> <img src="https://www.tshaonline.org/images/logo_tsha.png" alt="tsha logo" class="img-fluid" width="348"> </a> </div> <div class="col-12 col-md-4 text-center"> <a href="https://www.legacyoftexas.com/"> <img src="https://www.tshaonline.org/images/logo--legacy-of-texas.png" alt="legacy of texas logo" class="img-fluid px-md-3 px-lg-0 py-3 py-md-0" width="250"> </a> </div> <div class="col-12 col-md-4 text-center"> <a href="https://www.texasalmanac.com/"> <img src="https://www.tshaonline.org/images/logo--texas-almanac.png" alt="texas almanac logo" class="img-fluid px-md-3 px-lg-0" width="250"> </a> </div> </div> </div> <div class="container-fluid bg-newspaper no-print"> <!-- sendy lot newsletter signup --> <div class="container"> <div class="row justify-content-center"> <div class="col-12 col-md-6"> <div class="py-5 mb-5"> <h2 class="pt-5 mb-3 h1 text-center" style="font-size: 3.24rem;"> Be the first to know </h2> <p class="text-center h4 mb-4"> Sign up for our newsletter, <em>Especially Texan</em>, and stay up to date on all things Texas. </p> <aside class="pt-3"> <section class=""> <form action="https://tshamail.org/subscribe" method="POST" accept-charset="utf-8"> <label for="name">Name</label> <br> <input type="text" name="name" id="name" style="width: 100%; margin-bottom: 1.62rem;"> <br> <label for="email">Email</label> <br> <input type="email" name="email" id="email" style="width: 100%;" class="mb-3"> <br> <div class="form-check"> <input type="checkbox" name="gdpr" id="gdpr" class="form-check-input"> <label class="form-check-label" for="gdpr"> I consent to receive email using the details provided above for the purpose of receiving history related content from Texas State Historical Association. </label> </div> <br> <div style="display:none;"> <label for="hp">HP</label><br/> <input type="text" name="hp" id="hp"/> </div> <input type="hidden" name="list" value="m6vcNXdgXSgePr83wrEaiQ"/> <input type="hidden" name="subform" value="yes"/> <input type="submit" name="submit" id="submit" value="Sign me up!" class="btn btn-danger btn-lg"> </form> </section> </aside> </div> </div> </div> </div> </div> <footer class="pt-5 bg-secondary text-light full-width-p"> <div class="container-fluid limit-width pt-3"> <div class="row text-center text-md-left pb-4"> <!-- membership --> <div class="col-12 col-sm-6 col-md-3 mt-5 mt-md-0"> <ul class="list-unstyled pl-0"> <li class="mb-lg-5"> <p class="text-muted h4 serif-font"> Join Today! </p> <ul class="list-unstyled pl-0 mt-2"> <li class="mb-3 mb-lg-1"> <a class="text-light serif-font" href="https://tsha.wildapricot.org/"> <i class="fa fa-external-link small pr-2" aria-hidden="true"></i> New Members </a> </li> <li class="mb-3 mb-lg-1"> <a class="text-light serif-font" href="https://tsha.wildapricot.org/Sys/Login"> <i class="fa fa-external-link small pr-2" aria-hidden="true"></i> Renewal </a> </li> <li class="mb-3 mb-lg-1"> <a class="text-light serif-font" href="https://tsha.wildapricot.org/donate"> <i class="fa fa-external-link small pr-2" aria-hidden="true"></i> Show Your Support </a> <p class="mt-4 mx-auto mx-md-0 text-light" style="font-size: 90%; max-width: 36ch !important;"> <em> We are a community-supported, non-profit organization and we humbly ask for your support because the careful and accurate recording of our history has never been more important. </em> <strong> <a class="text-light sans-serif-font" href="https://tsha.wildapricot.org/donate">Every dollar helps.</a> </strong> </p> </li> </ul> </li> </ul> </div> <!-- mailing and physical address locations (md + screens only) --> <div class="col-12 col-sm-6 col-md-3 offset-md-1"> <div class="row text-center"> <div class="col-12"> <p class="text-muted h5 serif-font mb-4"> Phone: <span class="text-white sans-serif-font pl-2">(512) 471-2600</span> </p> </div> <div class="col-12"> <p class="text-muted h5 serif-font mb-2"> Mailing Address: </p> <address class="sans-serif-font"> Texas State Historical Association <br> PO Box 5428 <br> Austin, TX&nbsp;&nbsp;78763 </address> </div> <div class="col-12"> <p class="text-muted h5 serif-font mt-3 mb-2"> Physical Address: </p> <address class="sans-serif-font"> 3001 Lake Austin Blvd. <br> Austin, TX&nbsp;&nbsp;78703 </address> </div> </div> </div> <div class="col-12 col-sm-6 col-md-3 offset-md-2 mt-md-0"> <!-- slot 29 --> <div id="slot-id-29" class="slot "> <!-- image-link promotion --> <div class="promo promo-type-image-link " id="convert-promo--promo-id-799"> <a href="https://www.legacyoftexas.com/product/texas-almanac-2024-2025" class=""> <img style="" src="https://www.tshaonline.org/images/promos/30785--Almanac_Sq.png" alt="Texas Almanac 2025_square" class="" > </a> </div> </div> <!-- end: slot --> </div> </div> <div class="row"> <!-- yield: footer content --> </div> </div> <div class="container-fluid bg-secondary px-3 py-4 text-center shadow-top-inset"> <div class="row"> <div class="col-12"> <div class="d-flex flex-column flex-xl-row justify-content-center justify-content-xl-center" style="gap: 0.62rem 3.24rem;"> <span> Copyright &copy; 2025 Texas State Historical Association (TSHA) </span> <a href="https://www.tshaonline.org/terms-of-use" class="text-white sans-serif-font title-link-underline">Terms of Use</a> <a href="https://www.tshaonline.org/policy-agreement" class="text-white sans-serif-font title-link-underline">Policy Agreement &amp; Privacy</a> <div> <!-- google translate --> <div id="disable-google-translate"> <a class="text-white" href="https://www.tshaonline.org/google-translate/enable">Enable Google Translate</a> </div> </div> </div> </div> </div> </div> <div class="text-center p-2 text-white" style="background-color: #bf5700;"> Texas State Historical Association is a proud affiliate of <a class="text-white" href="https://www.utexas.edu/" target="_blank" rel="noopener">University of Texas at Austin</a> </div> </footer> <!-- Google Analytics--> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-3QQQSM11HP"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-3QQQSM11HP'); </script> </div> <!-- Meta Pixel Code --> <script> !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window, document,'script', 'https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '454906770328299'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=454906770328299&ev=PageView&noscript=1" /></noscript> <!-- End Meta Pixel Code --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10