Skip to content

How to Add “More” Link Inline for Blog Entries

Disable More Tag For Blog Entries

By default if the theme see's that your post is using the more tag it will use that for the blog entry excerpts. If you want to ignore the more tag and use the theme's custom excerpt function you can…

Read more

Add Border Animation Hover on Header One Menu Links

#site-navigation .dropdown-menu > li > a > span.link-inner { position: relative; } #site-navigation .dropdown-menu > li > a > span.link-inner:after { position: absolute; bottom: 0px; content: ""; background: #4a97c2; width: 0; height: 2px; left: 0; transition: 0.3s all; } #site-navigation…

Read more

Alter Breadcrumbs End Title

function myprefix_tweak_breadcrumbs( $trail ) { // Change trail end title $trail['trail_end'] = 'YOUR CUSTOM END'; // Return breadcrums trail return $trail; } add_filter( 'wpex_breadcrumbs_trail', 'myprefix_tweak_breadcrumbs' );

Read more

Change Vertical Header Style 6 Width

@media only screen and (min-width: 960px) { body.wpex-has-vertical-header #site-header { width: 200px; } body.wpex-has-vertical-header.full-width-main-layout #wrap { padding-left: 200px } }

Read more
Back To Top