Forum Replies Created
-
AuthorPosts
-
Christoph
MemberYou must have made some customizations that you didn't tell me about 😉
Next thing that works for me:
Around line 865
.site-header { background-color: #fff; min-height: 204px; }add
background: url(http://www.securitytechmaster.com/wp-content/uploads/2015/01/1-8-2015-logo735x204.png) no-repeat center !important;So it looks like this:
.site-header { background-color: #fff; min-height: 204px; background: url(http://www.securitytechmaster.com/wp-content/uploads/2015/01/1-8-2015-logo735x204.png) no-repeat center; }
Christoph
MemberWe will get this sorted out.
My Question about the genesis simple headers plugin was just to find out if the inline css came from this plugin.
By installing and activating it, step 2 became impossible because the plugin is hiding the header settings...I´m sorry about the confusion. I didn´t express myself clearly enough.
Please deactivate the Genesis Simple Headers plugin.
Now you should see the Genesis - Theme Settings - Header settings area.
Make sure it is set to Image Logo.
Christoph
MemberLooks like you figured it out. Nice work!
Christoph
MemberHi,
this tutorial should solve your problem:
http://thepixelista.com/responsive-genesis-child-theme-logo/
Christoph
MemberHi,
besides possible performance problems from hostgator, you can check your page performance with several websites:
http://gtmetrix.com
http://tools.pingdom.com/fpt/
https://developers.google.com/speed/pagespeed/insights/And I´m sure there are even more out there...
They will give you suggestions how to make your website faster.Big points are usually:
optimizing images (you can use online services like http://www.compressor.io, http://www.kraken.io, http://www.smushit.com/ysmush.it/, tinypng.com,... for that) and
using a caching plugin (like wp-supercache or w3total cache).If you want to find out the impact plugins have on your website load times you can use the p3-profiler plugin.
https://wordpress.org/plugins/p3-profiler/There are also plugins to check your database and help optimize it (like wp-optimize), but be very careful with that and always make sure you have an up-to-date backup of your website.
Christoph
MemberOk, why don´t you try the following:
1. remove the logo from Appearance - Header - Header Image
2. make sure Genesis - Theme Settings - Header is set to Image Logo
3. change the code around line 898 of the style.css to.header-image .site-title > a { background: url(http://www.securitytechmaster.com/wp-content/uploads/2015/01/1-8-2015-logo735x204.png) no-repeat center; float: left; min-height: 204px; width: 100%; }
Christoph
MemberHi,
there is always hope.
Did you install the genesis simple headers plugin?
Christoph
MemberChristoph
MemberHi,
around line 1129 of the style.css after the following code
/* Widget Area --------------------------------------------- */ .site-header .widget-area { float: right; text-align: right; width: 728px; }add
.site-header .widget-area #text-5 { padding-top: 15px; }Adjust the 15px to your liking.
Christoph
MemberHi,
I´m not sure if you are using a plugin to get your new logo as background into the header.
If you can adjust the following line of inline cssbackground: url(http://www.securitytechmaster.com/wp-content/uploads/2015/01/1-8-2015-logo735x204.png) no-repeat !important;to include
centerlike so:background: url(http://www.securitytechmaster.com/wp-content/uploads/2015/01/1-8-2015-logo735x204.png) no-repeat center !important;your logo will be centered.
Christoph
MemberHi,
the following two tutorials might help:
To include tags in search:
http://www.rfmeier.net/include-category-and-post-tag-names-in-the-wordpress-search/To show featured images:
How to display only the Title and Featured Image for Posts in Genesis
Christoph
MemberYou are welcome!
Glad I could help.
Christoph
MemberYou are welcome.
Don't hesitate to ask questions.
Christoph
MemberI´m still seeing the lines in the code.
Did you save the changes?
Christoph
MemberHi,
you changed the following code in the style.css around line 876
.title-area { float: left; //* Removed 12/10/2014 //* padding-top: 10px; //* width: 320px; width: 0px; }To place a "read-only" comment in css wrap it like this:
/* content you don't want executed */
Christoph
MemberHi John,
you are welcome.
I´m glad I could help.
Great job on your website!Be well,
Christoph
Christoph
MemberHi John,
in home.php you will see the following code:if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 1, 'feature_image_size' => 0, 'feature_image_class' => 'alignleft post-image', 'feature_content_limit' => 0, 'grid_image_size' => 'grid-featured', 'grid_image_class' => 'grid-featured', 'grid_content_limit' => 250, 'more' => __( '[Continue reading]', 'eleven40' ), ) );You can edit
feature_image_size' => 0,to display the featured image. 1 will show the image full size, 'thumbnail' will show a thumbnail...To change the alignment of the image you can edit
'feature_image_class' => 'alignleft post-image',For more information about the image sizing and the loop in general:
http://my.studiopress.com/tutorials/genesis-grid-loop/
http://philipgledhill.co.uk/genesis-grid-loop-tutorial/
Christoph
MemberHi,
you are welcome.
I´m glad I was able to help.
Christoph
MemberChristoph
MemberHi,
1. Center Logo
How To Center Your Header Image or Logo In Genesis Sample Theme
Change line 865 of the style.css to
.site-header .wrap {
padding: 40px 0;
width: 400px; /* Add This Line With Image Width */
}2. Move Primary Navigation down
Around line 1041 of the style.css.nav-primary {
add
margin-top: 5px;
change the 5 to any value you prefer.3. Change color of the background of the Primary Navigation
Around line 1041 of the style.css.nav-primary {
change
background-color: #333
to any hex color code you want.4. Change the "height" of the Primary Navigation
Around line 947 of the style.cssgenesis-nav-menu a {
change the first value (30px) of
padding: 30px 24px;5. Add border around Primary Navigation
Around line 1041 of the style.css.nav-primary {
Addborder-top: 5px solid #fff; border-bottom: 5px solid #fff;Change the 5px value to change the thickness of the border and the #fff to change the color of the border.
6. Home Button
In WordPress go to Appearance - Menus - Links. Enter your website address at URL and Home at Link Text.
Click Add to Menu.
Drag and Drop the new Home menu item to the top of the menu items.
-
AuthorPosts