• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

WBXPress.NET

Website Developement Guide

  • Home
  • About
  • Contact
  • apache2
  • mysql
  • nginx
  • php7
  • SSL
  • google
  • wordpress
  • genesis
  • adsense
  • caching
  • AMP
  • seo
  • ubuntu

Customizing Genesis eleven40-pro Theme

Updated: 31st August 2016 by wbxpress 105 Comments

This tutorial is for customization of eleven40-pro, a child theme of genesis by studiopress.com. eleven40-pro is one of the most popular premium genesis child theme. The codes written for different genesis child themes are very similar because they are all of same parent theme i.e. genesis framework. If someone learn to customize a particular child theme of genesis, he/she can also customize other child themes similarly.

You may like to know: Customizing Genesis Sample Child Theme

Customizing any theme requires editing of functions.php and style.css file inside theme directory. If you have edit permission from wordpress dashboard, you may change it from Appearance->Editor->functions.php or style.css. Always refresh your browser cache to see style changes.

1. Change fixed header to Unfixed.

The header of eleven40-pro theme is normally fixed, that means whenever you scroll a page, the header remains always visible. So, the header part always occupy a certain height of your screen. This may be unwanted for many website developers. So we change fixed header to unfixed header. Find .site-header { in style.css.

.site-header {
...
position: fixed; // Remove this line
...
}

Whenever you make your header unfixed, you will see an increased margin below header area. So to adjust you need to change margin values.

.site-inner {
	clear: both;
	margin: 65px 0 40px; // Change 65px to 0
}

2. Remove featured post from home page

The home page of this theme is a two column grid with featured post at the top. The first post (featured) is displayed in full length. If you want to disable featured post, goto Appearance->Editor->home.php

genesis_grid_loop( array(
'features' => 1,  // Change 1 to 0

3. Completely Remove Grid style Homepage

Rename home.php to home-old.php
You can not rename a file from wordpress dashboard. You need to either use a FTP client or have root access to your hosting account or need to ask your host to rename this file.

4. Display post excerpts instead of full length

Goto Genesis->Theme Settings->Content Archives->Display Post Excerpts

excerpts

5. Change Footer Credit Texts

Add the following code inside functions.php

//* Change the footer text
add_filter('genesis_footer_creds_text', 'wbxp_footer_creds_filter');
function wbxp_footer_creds_filter( $creds ) {
	$creds = 'Copyright © by Yoursite Name · All rights reserved · Log in';
	return $creds;
}

6. Remove Website Field from Commentators

Add this code inside functions.php

//* Remove Website Field
add_filter('comment_form_default_fields', 'wbxp_remove_comment_url');
function wbxp_remove_comment_url($arg) {
    $arg['url'] = '';
    return $arg;
}

7. Remove Comment Form Allowed Tags and Display a Custom Message

Add this inside functions.php

//* Remove comment form allowed tags
add_filter( 'comment_form_defaults', 'eleven40_remove_comment_form_allowed_tags' );
function eleven40_remove_comment_form_allowed_tags( $defaults ) {
	
	$defaults['comment_notes_after'] = 'Do not share your Mobile number.';
	return $defaults;

}

8. Display Excerpts for Pages

By default genesis support only excerpts for posts. You may add excerpts for pages also. Add the following inside functions.php

add_post_type_support( 'page', 'excerpt' );

Now you can see Excerpt for pages also.

page-excerpt

9. Change Font size of different Headings

eleven40-pro theme uses large font size, lots of white space, margin, padding, etc. We now change these things to make this theme looks compact. All these values are calculated from our end to make this beautiful as per our views. So you may change with your own values accordingly in style.css.

h1 {
font-size: 24px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 18px;
}

h4 {
font-size: 16px;
}

h5 {
font-size: 15px;
}

h6 {
font-size: 14px;
}

10. Change Font Size of Post Title

.entry-title {
font-size: 36px;  // Change 36px to 24px
line-height: 1;
}

11. Change Font Size of Body Text

Change in style.css

body {
...
font-size: 18px; // Change 18 to 14
...
}

12. Change Font Size of different Sections

Sections are self explanatory, so we only put the changes in style.css.

blockquote::before {
font-size: 14px;

.breadcrumb {
font-size: 12px;

.archive-description h1,
.author-box h1 {
font-size: 14px;

.archive-description p,
.author-box p {
font-size: 13px;

.site-title {
font-size: 22px;

.genesis-grid {
font-size: 14px;
}

.entry-meta {
font-size: 14px;
}

.comment-header {
font-size: 14px;
}

.sidebar {
font-size: 14px;
}

.footer-widgets {
font-size: 13px;

.site-footer {
font-size: 13px;

input,
select,
textarea {
font-size: 14px;

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
font-size: 14px;

.wp-caption-text {
font-size: 14px;

.archive-title {
font-size: 16px;

13. Change margin and padding of different sections

.site-description {
font-size: 16px;
margin: 30px 0 0;
padding: 18px 0;
}

.site-description {
font-size: 14px;
}

p {
margin: 0 0 18px;
padding: 0;
}

blockquote {
margin: 30px 30px 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 14px;

input,
select,
textarea {
padding: 14px;

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
padding: 14px 18px;

table {
margin-bottom: 30px;

.site-inner {
clear: both;
margin: 0 0 24px;
}

.content {
padding: 24px 30px 18px;

.full-width-content .content {
padding: 30px 0 0;
}

.genesis-grid-even,
.genesis-grid-odd {
margin-bottom: 16px;
}

.alignleft .avatar,
.author-box .avatar {
margin-right: 20px;
}

.alignright .avatar {
margin-left: 20px;
}

.entry-comments .avatar {
margin: 0 14px 20px 0;
}

img.alignleft,
.featured-content .alignleft img,
.wp-caption.alignleft {
margin: 0 20px 20px 0;
}

img.alignright,
.featured-content .alignright img,
.wp-caption.alignright {
margin: 0 0 20px 20px;
}

.breadcrumb {
font-size: 12px;
margin-bottom: 24px;
padding: 10px 14px;
}

.archive-description,
.author-box {
margin-bottom: 30px;
padding: 30px;
}

.sidebar-content-sidebar .archive-description,
.sidebar-content-sidebar .author-box {
margin: 0 -30px 30px;
}

.widgettitle {
margin-bottom: 20px;
}

.archive-title {
margin-bottom: 20px;
}

.genesis-nav-menu a {
padding: 22px 16px 20px;
}

.genesis-nav-menu .sub-menu a {
padding: 14px 16px;
}

.nav-primary .genesis-nav-menu .sub-menu .sub-menu {
margin: -47px 0 0 189px;
} //kept same

.nav-primary .sub-menu a {
padding: 14px 16px;
}

.entry {
margin-bottom: 20px;
}

.single .entry {
margin-bottom: 14px;
}

.eleven40-landing .entry {
padding: 20px 30px 14px;
}

.entry-content ol,
.entry-content p,
.entry-content ul {
margin-bottom: 14px;
}

.entry-content ol,
.entry-content ul {
margin-left: 30px;
}

.entry-header .entry-meta {
margin-bottom: 14px;
}

.entry-footer .entry-meta {
padding-top: 10px;
}

.after-entry {
background-color: #f5f5f5;
margin-bottom: 20px;
padding: 14px;
text-align: center;
}

.after-entry .widget {
margin-bottom: 30px;
}

.archive-pagination,
.entry-pagination {
margin: 30px 0;
}

.entry-comments,
.ping-list {
margin-bottom: 20px;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
width: 30%
}

/* Forms

input,
select,
textarea {
padding: 6px;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
padding: 8px 18px;
}

.comment-respond label {
margin-right: 12px;
}

.comment-list li,
.ping-list li {
margin-top: 12px;
padding: 16px;
}

.comment-list li li {
margin-right: -16px;
}

.sidebar {
padding-top: 24px;
}

.sidebar .widget {
margin-bottom: 30px;
}

.footer-widgets {
padding-bottom: 30px;
padding-top: 30px
}

.footer-widgets-1 {
margin-right: 30px;
}

.footer-widgets .widget {
margin-bottom: 30px;
}

.site-footer {
padding: 10px 12px;
}

.genesis-nav-menu.responsive-menu li.current-menu-item > a,
.genesis-nav-menu.responsive-menu .sub-menu li.current-menu-item > a:hover,
.genesis-nav-menu.responsive-menu li a,
.genesis-nav-menu.responsive-menu li a:hover {
padding: 16px;
}

.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
padding: 12px 16px;
}

.genesis-nav-menu.responsive-menu .sub-menu li a,
.genesis-nav-menu.responsive-menu .sub-menu li a:hover {
padding: 16px;
}

.author-box {
padding: 16px;
}

.footer-widgets .widget:last-child {
margin-bottom: 30px;
}

That’s all. We hope you like this new look of eleven40-pro theme after making above changes. If you have any suggestion or question please feel free to comment below. We’ll get back to you.

Related Posts:

  • Accelerated Mobile Pages in WordPress
  • Move Footer Menu below Site Header in Genesis
  • Featured Image in Genesis Theme - Best Practice
  • Add a Search Box in Primary Navigation

Filed Under: wordpress Tagged With: eleven40-pro, genesis, theme-development

Reader Interactions

Comments

  1. Xaif says

    11th July 2016 at 7:57 pm

    Amazing… will be trying this tutorial which font you are using in your site?

    Reply
    • wbxpress says

      11th July 2016 at 8:59 pm

      Thanks for your comment.
      Fonts used: Montserrat and Neuton.

      Reply
      • Xaif says

        11th July 2016 at 10:35 pm

        That was a quick reply.

        While editing function.php and other style sheet i got an error of pluggable.php and now i cant edit anything

        https://postimg.org/image/u34tug0pt/

      • wbxpress says

        12th July 2016 at 1:00 pm

        The error occurs when you are not editing theme files / wp-config.php etc. with plain text editor. Use Notepad++ for editing theme files.

        please check this: https://codex.wordpress.org/FAQ_Troubleshooting#How_do_I_solve_the_Headers_already_sent_warning_problem.3F

  2. Xaif says

    12th July 2016 at 1:59 pm

    I want my theme look like this site. Can You help me out

    (https://alltechbuzz.net)

    I know its eleven40 but how to edit like his site…

    Reply
    • wbxpress says

      12th July 2016 at 2:09 pm

      You almost reached there.
      Further tips:
      1. Update your eleven40 theme to eleven40-pro.
      2. Use Developer Tools->Inspector of Mozilla Firefox to find every details of the said site.
      3. Apply those values to your own theme’s style.css

      Reply
      • Xaif says

        12th July 2016 at 2:29 pm

        Yesterday While editing your theme i got an errors following your codes then I didn’t edited more 🙁

        Please look at those code once and give a try…

        #7 try that once and do let me know.

        Will You suggest how to edit properly without getting any error ?

      • wbxpress says

        12th July 2016 at 2:43 pm

        Sorry to hear that. The above codes were tested in our site. You can find out that the code #7 is applied here and it is working fine.
        Try adding the code snippet at the end of functions.php.
        I suggest you to apply codes one by one.

    • Suraj Patel says

      7th September 2016 at 1:04 am

      https://www.alltechbuzz.net/atb-style-eleven40-wordpress-template-for-blogger/

      This link certainly help you

      Reply
  3. Xaif says

    12th July 2016 at 4:49 pm

    Ok! I will Be trying all the codes again and while adding css codes where should i add those in

    Dashboard — Appearance — Edit CSS

    This one is because of Jetpack plugin…

    Or

    Dashboard — Apperance — Editor — Style.css

    In which one should I try?

    Reply
    • wbxpress says

      12th July 2016 at 4:51 pm

      you should try second option.

      Reply
      • Xaif says

        12th July 2016 at 8:43 pm

        Can you share us a guide in which showing how to use Google font without any plugin in our site?

      • wbxpress says

        12th July 2016 at 10:36 pm

        Okay. I will write a post for you today. Please check after an hour.

      • wbxpress says

        12th July 2016 at 11:01 pm

        check this: https://wbxpress.net/use-google-font-genesis-theme/

    • career says

      8th March 2017 at 11:53 am

      in the homepage, even if you set the post content to excerpt, the latest post still shows the full length. is there a way to change it to excerpt

      Reply
  4. Xaif says

    12th July 2016 at 10:20 pm

    I have edited the Theme have a look at my site theme once https://xtremetricks.net

    Reply
    • wbxpress says

      12th July 2016 at 11:06 pm

      Your site looks nice but there are some problems i noticed right now.
      1. you have displayed google ads 5 times in a single page. this is not permitted as per google adsense policy.
      2. you have not taken advantage of using manual excerpts for posts.

      Reply
      • Xaif says

        13th July 2016 at 4:59 pm

        I was using 5 ads and in that I was using 2 link ads and 3 image ads. And thats it…

        I have not taken advantage of excerpts means?

      • wbxpress says

        13th July 2016 at 10:18 pm

        please check this: https://wbxpress.net/no-need-seo-plugin-genesis-theme/

    • pavan kumar says

      12th June 2017 at 12:22 pm

      Help me also bro in editing.. Can u send style.css code to me please..

      Reply
    • Durgesh says

      14th November 2017 at 3:18 pm

      Can you please send the style.css to me too? My email id is dksvishen@gmail.com

      Reply
  5. Xaif says

    14th July 2016 at 2:37 pm

    Just Check my site once. I have done all the stuffs and say me what i need to improve. Your tutorial was awesome and worked for me great thank you 🙂

    Reply
    • wbxpress says

      14th July 2016 at 11:07 pm

      i have checked your site. it is beautiful now. your site speed is excellent. great job.

      Reply
      • Xaif says

        15th July 2016 at 3:48 pm

        Thanks to you for the great tutorial. I have to ask you one thing. Whenever someone types link in the comment then the page size automatically increases like in your site…

        https://postimg.org/image/5q4ol2al3/

        You have posted one link and because of that this thing happened in your site. In mobile devices.

        Can you share a code in which we can get rid of these errors?

      • wbxpress says

        15th July 2016 at 8:27 pm

        i am sorry to say that i could not understand what you told and also could not understand the screenshot.

        would you mind to tell the problem in more detail?

    • pavan kumar says

      12th June 2017 at 12:23 pm

      Bro email me style.css code to me @ pavankumarsake1@gmail.com bro..
      Thanks

      Reply
  6. KBrizy says

    26th July 2016 at 9:30 am

    Excellent guide. I definitely appreciate the help. #3 however didn’t go into too much explanation. How does this work exactly? Simply renaming the home.php file solves the problem? How/Why does this work?

    I’m looking to remove the grid layout on my site as well.

    Reply
    • wbxpress says

      26th July 2016 at 9:35 pm

      Thank you for your complement. If you want to remove grid layout in home page then you need to either remove home.php or rename the file because this home.php file consists code for grid layout system.

      Reply
  7. kochi97 says

    30th August 2016 at 4:33 pm

    Hi,
    Could you please let me know about the Genesis Framework Theme “Focus Pro Theme”. It’s a child theme of Genesis Framework. And Please let me know the free download link of this theme. Would appreciate that much.

    Thanks
    Kamrulrich@gmail.com

    Reply
    • wbxpress says

      31st August 2016 at 8:15 pm

      This theme is a premium theme and you need to purchase it. Any illegal copy found in internet may contain malicious code inside the theme. So beware of it.

      Reply
  8. Pius Tolani says

    4th November 2016 at 7:50 pm

    This was help full. Succesfully Removed fully lenght post on home page.

    Reply
  9. Nitesh kumar says

    11th November 2016 at 7:45 am

    Thanks this helped me a lot.

    Reply
  10. suprakash mishra says

    18th November 2016 at 8:24 am

    Hello sir i recently purchased genesis parent and 40pro child theme but i want my site like same as alltechbuzz.net can you plz review that site and plz tell me how can i customize my theme like thqt site

    Reply
  11. Hari says

    11th December 2016 at 12:53 pm

    Hi there,

    I need to increase the width of my sidebar. By default eleven40 pro there have 250px of sidebar. This is an issue when it comes to placing google adsense and some other banners which is usually 300px. Can you help me to solve this issue.

    Reply
  12. Muhammad shahid says

    31st December 2016 at 10:46 am

    What a great tutorial. Thanku so much bro for this great article

    Reply
    • wbxpress says

      6th January 2017 at 8:41 pm

      Thank you for your appreciation

      Reply
  13. ester says

    7th January 2017 at 12:32 pm

    in the homepage, even if you set the post content to excerpt, the latest post still shows the full length. is there a way to change it to excerpt?

    Reply
    • wbxpress says

      19th January 2017 at 12:25 am

      Which theme you are using? Try filling manual excerpt before publishing post.

      Reply
  14. Ronak says

    15th January 2017 at 2:01 pm

    Any other way possible to remove grid view?

    Reply
    • Dilshad Ahmad says

      6th February 2017 at 4:30 pm

      Yes! login to you cPanel – File manager – Wp Content – Themes – eleven40 – rename Home.php to Home-old.php… Done!

      Reply
  15. Abdul Razique says

    3rd April 2017 at 1:15 am

    please tell me theme name which you are using

    Reply
    • wbxpress says

      4th April 2017 at 9:21 pm

      it is a custom theme. https://wbxpress.net/themes/

      Reply
  16. Shubham Meena says

    6th April 2017 at 2:54 pm

    I want to use eleven40 theme on my blog https://www.trickscity.com but I am unable to customize it like other. Can you please help me.

    Reply
  17. Philip Gibson says

    15th April 2017 at 1:23 pm

    I’m trying to configure the Responsive Menu plugin to work with eleven40 Pro. The instructions say:

    Insert the following shortcode in your theme where you want the menu to show (which is normally in the header, i.e. header.php)

    echo do_shortcode(‘[responsive_menu_pro]’);

    The only .php files I can find are:

    functions.php (the developer, who’s not familiar with Genesis, says this is not the appropriate file)
    home.php
    theme-defaults.php
    page_landing.php

    Can you please help me with this?

    Reply
    • Satish says

      8th October 2018 at 6:36 am

      It seems home.php is not in latest versions. I am still looking for that.

      Reply
  18. Rohan Singh says

    6th May 2017 at 4:23 am

    I am using News Pro child theme on my blog – https://www.techtricksnow.com/
    But few of the functions listed above are not working.
    Can you help me sir?

    Reply
    • wbxpress says

      7th May 2017 at 5:18 pm

      Sure. Please ask which is one is not working.

      Reply
  19. Lrers says

    8th May 2017 at 10:29 am

    It is amazing article to editing eleven-40 pro theme and thanks for sharing

    Reply
  20. digitalsonly says

    8th May 2017 at 12:24 pm

    Hi i tried the thing mentioned here.. Style.css file updated but the changes is not showing .. Kindly check my blog once .. I want to remove sub title of the blog .. It is taking my space .. So kindly check and give solution dear

    Reply
    • wbxpress says

      8th May 2017 at 9:05 pm

      Open functions.php file and remove the following line:-

      add_action( 'genesis_before_content_sidebar_wrap', 'genesis_seo_site_description' );
      Reply
  21. malik ismael says

    15th May 2017 at 11:32 am

    thanks a lot . without your help i was unable to customize my blog. again thanks dude.

    Reply
    • wbxpress says

      20th May 2017 at 5:29 pm

      you are most welcome bro.

      Reply
  22. Sunil says

    21st May 2017 at 2:02 pm

    How to design the site title like a logo in the eleven 40 pro theme.

    Reply
  23. Waqas Rahman says

    26th May 2017 at 12:14 am

    Hey i tried to cutomize my theme but i don,t know how to change header menu links color to black…Here is the site https://www.buzzytricks.com/

    Reply
  24. MEET JAIN says

    27th May 2017 at 5:26 pm

    awesome detailed guide for begginers!!
    thanks for sharing!!

    Reply
  25. thirupa says

    8th June 2017 at 11:08 am

    Any way to change grid structure in eleven 40 pro theme without modifying file name.
    Very Good Article to edit eleven 40pro theme
    Thanks you

    Reply
  26. Nishan says

    13th June 2017 at 11:02 pm

    Awesome explain very halpfull to new people

    Reply
  27. Arsh says

    3rd July 2017 at 10:59 pm

    disabling sticky header not working how to fix

    Reply
  28. Rock Star Raja says

    5th July 2017 at 4:35 pm

    How to remove the tags from the home page

    Reply
  29. Ayush Singh says

    21st July 2017 at 9:54 pm

    Thanks i Just Remove Grid HomePage Section. Now Site Looking Good. Thanks for It

    Reply
  30. Shiva Chandra says

    22nd July 2017 at 12:26 pm

    Love your Guide. It helps me a lot, and now I edited my site like a pro.

    Reply
    • wbxpress says

      24th July 2017 at 9:50 pm

      thank you for commenting.

      Reply
  31. Hiren Mavani says

    2nd September 2017 at 6:07 pm

    thank you nice article. http://bloggingcraft.com/

    Reply
  32. Arsh Sran says

    7th September 2017 at 3:42 pm

    I really thanks you !
    Very helpful article for me !
    I was messing up with that long post on homepage !
    Finally this helped !
    God Bless You Bro !

    Reply
  33. Arsh Sran says

    7th September 2017 at 3:44 pm

    Nice Blog Also !

    Reply
  34. emad says

    14th November 2017 at 7:09 pm

    I really thanks you !
    Very helpful article for me !

    Reply
  35. Ronak Prajapati says

    17th November 2017 at 9:01 am

    Can you please help me how to add full width menu above header

    Reply
  36. modapkz says

    19th November 2017 at 10:43 pm

    Hello bro ! i have one doubt ! can u tell how to add google font the right way ! it load whenever page is reloaded ! or the way you mentioned in your google font is best ??

    Reply
  37. ApkHx says

    6th December 2017 at 7:47 pm

    How to add google font directly?

    Reply
  38. Tech Info World says

    15th December 2017 at 5:22 pm

    Hi Bro,

    Previously, I am using this eleven pro theme for my website, later I move on to another theme.

    Eleven pro theme looks great and loading speed also very nice. I really love that theme, but customization takes little more stuff for me, this post help me to solve that issue also.

    Thank you

    Reply
  39. Smyan says

    16th December 2017 at 6:56 pm

    I really thanks you !
    Very helpful article for me !
    I was messing up with that long post on homepage !

    Reply
  40. pankaj bishnoi says

    21st December 2017 at 9:38 pm

    bro how can i change sidebar title’s heading?
    I didn’t find perfect way to do that.

    Reply
    • wbxpress says

      7th January 2018 at 11:04 am

      you need to change style of .widget-title.

      Reply
  41. Roshan Singh says

    27th December 2017 at 12:27 am

    Hi, I’m using eleven40 theme in my site and want to export custom google font in it. Can you tell me how to do it?

    Reply
    • wbxpress says

      7th January 2018 at 11:03 am

      please check this: https://wbxpress.net/use-google-font-genesis-theme/

      Reply
  42. tapan says

    30th December 2017 at 7:40 am

    nice post … will be trying this tutorial for my blog !

    Reply
  43. vikrant guleria says

    3rd January 2018 at 2:37 pm

    I really thanks you !
    Very helpful article for me !
    I was messing up with that long post on homepage !
    Finally this helped !
    God Bless You Bro !

    Reply
    • wbxpress says

      7th January 2018 at 10:53 am

      thank you for your kind words.

      Reply
  44. Deepak Tiwari says

    8th January 2018 at 8:51 am

    Wow, AMAZING GUIDELINES! Thanks

    Reply
  45. asdduke says

    16th January 2018 at 2:31 am

    Thanks for sharing cool customization tweaks ! i was stucked @ featured post !

    Reply
  46. naveen Kumar Singh says

    19th January 2018 at 11:57 am

    Thanks for sharing such a nice article.

    Reply
  47. Rohit says

    2nd February 2018 at 12:44 am

    Thanx for sharing.it helped me lot

    Reply
  48. vamsi says

    12th February 2018 at 4:29 pm

    even if i removed the line that is header position: fixed. still it is not going

    Reply
    • wbxpress says

      13th February 2018 at 5:45 pm

      refresh your browser cache.

      Reply
  49. Akash says

    21st February 2018 at 10:45 am

    plz explan where i paste no.12 and no.13 codes?

    Reply
  50. Tejas says

    22nd February 2018 at 2:34 pm

    great website

    Reply
  51. sahid says

    22nd February 2018 at 2:34 pm

    thank you for sharing amazing websiet

    Reply
  52. My Daily Gadget says

    24th February 2018 at 3:21 am

    Even I am using Eleven40 Pro theme on my blog, but I am facing problem in making articles look like a list.

    The first post is appearing in grid. Can you please help ?

    Regards

    Reply
  53. Ankan says

    27th February 2018 at 11:26 am

    Thanks. Finally I did the customization

    Reply
  54. trendingapks says

    14th March 2018 at 7:28 pm

    Hi,
    I m trying to change the header color of genesis using eleven40 pro but it seems there is no option available do it. How to customize eleven40 pro to change the header please explain if you know.. thanx

    Reply
    • Varsha singh says

      14th October 2018 at 12:18 am

      Thank you for such a great article. Please keep up this good work.

      Reply
  55. Raj says

    24th March 2018 at 6:31 pm

    I think my friend use this theme of his website, please someone check and tell me what theme he is using, his blog is https://www.androidterritory.com/ please some1 tell me,

    Reply
  56. Techwebsites says

    24th March 2018 at 8:05 pm

    plz provided your theme css code becouze i love your theme style

    Reply
    • wbxpress says

      24th March 2018 at 11:38 pm

      thank you. you can get the theme from this link: https://wbxpress.net/themes/

      Reply
  57. edward says

    11th April 2018 at 10:05 pm

    You can also customize the mobile menu using wpr menu plugin.

    Reply
  58. Alex says

    15th April 2018 at 10:12 am

    Is there any plugin available for the same, I’m weak at CSS so let me know if there is any plugin or alternative language available for this work.

    Reply
  59. Kairy says

    20th August 2018 at 4:13 pm

    Thanks for sharing awesome tips for eleven40 pro theme. I will apply above customization for my blog.

    Reply
  60. Rohan says

    10th September 2018 at 2:32 pm

    Hello admin,
    I tried few customization. And it helped me a lot.

    Can you please help me with fixing the navbar.

    Reply
  61. Satish says

    8th October 2018 at 6:28 am

    Hi,

    I am using the latest version of the eleve40 theme. I want to disable the featured post, the first post that is displaying in full length.

    I couldn’t find the home.php in Genesis theme. Can you help me how to remove the featured post from the homepage.

    Eleven40 Pro ThemeVersion: 2.2.1
    GenesisVersion: 2.6.1

    Please advise.

    Reply
    • wbxpress says

      8th October 2018 at 5:30 pm

      I just checked the latest version of eleven40-pro theme and the home.php file exists. You need to rename home.php

      https://wbxpress.net/wp-content/uploads/eleven40-pro.jpg

      Reply
  62. Narang says

    8th June 2019 at 11:22 pm

    The sticky header and extra margin space removal method is not working

    Reply
  63. Venkat says

    2nd August 2019 at 10:21 pm

    I want to show direct menu items instead of a triple bar icon ≡ while in the mobile view. Can you help me out? Please.

    Waiting for your reply.

    Reply
  64. Martin Blox says

    17th August 2019 at 3:45 am

    Hey, Im Getting Issues in Homepage, Post Showing in Grid Mode when i’m remaning home-old.php so it is showing whole post content on homepage please help me 🙂

    Reply
  65. lucky patcher apk says

    27th September 2019 at 7:35 pm

    hey can you help me edit eleven 40 pro theme footer i cannot able to edit on my site ..

    Reply
  66. Armaan Sharma says

    3rd October 2019 at 2:49 am

    Hey, Bro, Can You Send Me the All Custom codes Like This Site https://xtremetricks.net Which You Made I Use All your Codes But It didn’t Look Likes Your Website This is my website
    (https://freeandroidtricks.com/) Can You Help.

    Reply

Leave a Reply to Shubham Meena Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Most Popular Posts

  • Remove/ Defer Render-blocking JavaScripts
  • Customizing Genesis eleven40-pro Theme
  • Free Genesis Child Theme by WBXPress
  • Host Multiple Sites with SSL in Ubuntu 18.04
  • 25 Ways to Boost Website Traffic that Really Work

Recent Comments

  • admin168 on How to Display All Categories in a Page or Post
  • Armaan Sharma on Customizing Genesis eleven40-pro Theme
  • lucky patcher apk on Customizing Genesis eleven40-pro Theme
  • leo on Remove/ Defer Render-blocking JavaScripts
  • Martin Blox on Customizing Genesis eleven40-pro Theme

Copyright © 2019 · Genesis Sample on Genesis Framework · WordPress · Log in