Forum Replies Created
-
AuthorPosts
-
wp guy
MemberOk, I might need some clarity. Are you referring to the black areas above and below your purple header image? The top black space is your nav menu - color controlled here:
#nav {
background-color: #333;
clear: both;
overflow: hidden;And below is another menu.
wp guy
MemberCan you post a link to your site please?
March 13, 2013 at 2:00 pm in reply to: What approach to use for building multi language website? #25929wp guy
MemberHere's one possible solution: http://wpml.org/
wp guy
MemberNextgen gallery plugin. http://wordpress.org/extend/plugins/nextgen-gallery/
wp guy
MemberWell, using Firebug I'm not seeing a font defined for your title area but it appears your H1 is using the Oswald font family. If it's just a temp text logo I'd just choose any font that looks decent.
wp guy
MemberThen I'm at a loss. Personally I'd just open my photo program, type the site title and upload as your temp logo.
wp guy
MemberHmmm, when you click Settings - General - do you have a site title?
wp guy
Member1) In Genesis, click text instead of image for logo.
or
2) Appearance - Themes - Customize - Site Title & Tagline - Display header text.
wp guy
Memberwp guy
MemberSomeone will come along and give you the easy way, hopefully. Here's the hard way. Hyperlink each one of those images to your social media site, then put 'em in a text widget and drag that into the Header Right widget area.
wp guy
MemberFresh out of ideas. Sorry. Which widget are you using? Latest posts? How about just installing a better widget that will allow you to limit the characters?
wp guy
MemberTwo things to try:
1) Click Genesis and under "content archives" you can put in a character limit
2) In your themes "Settings" - "Reading" click "Summary."
wp guy
MemberCan you provide a link to your site?
wp guy
MemberGive this a shot, don't know if it'll work but it's quick: Click "appearance" then "themes" then "customize" then "site title& tagline" and uncheck "display header text."
If not, when you click "Genesis" you should see the option to choose text or an image for the header.
wp guy
Memberwp guy
MemberThanks for the help. I took out the wp cycle php and while it didn't break the theme, it also didn't work. Here's the link to the site: http://supplementmymedicare.com/
I still need to find a way to turn the Home Top #2 area into a regular widget area. Here's how the code for home.php reads now:
<?php
/**
* This file handles the output on the homepage.
*/add_action( 'genesis_after_header', 'enterprise_home_top_helper' );
/**
* Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle.
*/
function enterprise_home_top_helper() {echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">';
if ( is_active_sidebar( 'home-top-1' ) ) {
echo '<div class="home-top-1">';
dynamic_sidebar( 'home-top-1' );
echo '</div><!-- end .home-top-1 -->';
}
echo '<div class="home-top-2">';echo '</div><!-- end .home-top-2 -->';
echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->';wp guy
MemberThe easiest way for me is to just add this to my functions.php file.
/** Customize the credits */
add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
function custom_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright © ';
echo date('Y');
echo ' · <a href="http://mydomain.com">My Custom Link</a> · Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
echo '</p></div>';
}wp guy
MemberThis may sound odd, but it's something to try; drag a text widget into that widget area - leave it blank. And make sure you have applied the padding changes.
wp guy
MemberIs this what you changed?
#header .widget-area p {
margin: 0;
padding: 0 0 5px;}
Because you'll still need to change this:
#header .widget-area {
float: right;
padding-right: 10px;
padding-top: 20px;
width: 478px;}
wp guy
MemberHmmm, try decreasing the top padding:
#header .widget-area {
float: right;
padding-right: 10px;
padding-top: 20px;
width: 478px;}
-
AuthorPosts