>

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

Optimal Image Sizes

Nexus Theme: For featured slider (at least): 582×520 For thumbnails (at least): 160×160 For header images (at least): 1400×400
read more

Remove Ellipses (…) from Post Title

Open the file defaultcat.php and search for this line: <h2><a href="<?php the_permalink() ?>" title="<?php printf(esc_attr__('Permanent Link to %s','eNews'), get_the_title()) ?>"><?php truncate_title(37); ?></a></h2> Replace it by this: <h2><a href="<?php the_permalink() ?>" title="<?php printf(esc_attr__('Permanent Link to %s','eNews'), get_the_title()) ?>"><?php the_title();...
read more

Background Image Behind Header

Please go to Epanel > General and at the bottom of that , you will see Custom CSS box. Please put this code there #header {background:url('https://image.png') !important;}
read more

« Previous Entries Next Entries »