Posted by The TechMentor in Wordpress
on Feb 19th, 2014
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.

Posted by The TechMentor in Wordpress
on Feb 19th, 2014
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:...

Posted by The TechMentor in Wordpress
on Feb 19th, 2014
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 );...

Posted by The TechMentor in Wordpress
on Feb 14th, 2014
Nexus Theme: For featured slider (at least): 582×520 For thumbnails (at least): 160×160 For header images (at least): 1400×400

Posted by The TechMentor in Wordpress
on Feb 14th, 2014
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();...

Posted by The TechMentor in Wordpress
on Feb 14th, 2014
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;}
