>

Basic Theme: Added Leaderboard Ad

Added the following code to header.php: <div id="leaderboard"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- SA-LeaderBoard --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-1786161350237793" data-ad-slot="8804002359"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script>></div> Then, added the following code to Custom CSS: #leaderboard { width:728px; margin:...
read more

Nexus Theme: Widen Widget Sidebar

Needed to widen the widget sidebar to fit a 300px wide AdSense ad. Added the following code to Custom CSS: #sidebar .widgettitle { margin: 0 -10px 20px -10px; } #sidebar .widget { padding: 0 10px 10px; }
read more

Nexus Theme: Changed Line Height for Bullets in Widgets

This code finally did it (again in Custom CSS): .widget li, .footer-widget li { line-height: 16px; } .widget li:before, .footer-widget li:before { border-width: 5px; content: ""; left: 0; position: absolute; top: 16px; } The “before” item handles the location of the bullet. Otherwise, alignment between the bullet and the text of off.
read more

Nexus Theme: Added Pinterest to Social Buttons

Created two 24×19 images of the Pinterest “P” one gray and one white (for hover). Added the following code to Custom CSS #et-social-icons { width: 256px; } /* Sets the hover background color for the button */ #et-social-icons .pinterest a:hover { background: #cb2028; } /* Sets the "normal" image */ #et-social-icons .pinterest .et-social-normal { background: url(https://all-offroad.com/main/wp-content/uploads/2014/02/Pinterest.png) no-repeat 19px 22px;} /* Sets the hover image */ #et-social-icons .pinterest .et-social-hover { background:...
read more

Nexus Theme: Modifications to Home Page

Reduced Headline size by adding: .et-description h2 {font-size:28px !important;} to Custom CSS in General Settings Reduced leading in Excerpt text by adding: .recent-post p {line-height: 20px;!important;} to Custom CSS in General Settings Changed the length of the excerpt by making the following modification to recent_module.php: Replaced <p><?php et_nexus_truncate_post( 77 ); ?></p> with <p><?php et_nexus_truncate_post( 150 );...
read more

« Previous Entries Next Entries »