Forum Replies Created
-
AuthorPosts
-
Pinky
MemberHey there
You can add this to your style.css
a:hover { color: #161616; }
that will change ALL hover links to whatever color you want - just change #161616 to be the color of your choice.
Also if you change this:
#header { background: #090909 url(images/header.png) center repeat-y; margin: 0 auto; min-height: 120px; overflow: hidden; width: 1060px; }
to this:
#header { background: #090909 url(images/header.png) center repeat-y; margin: 0 auto; min-height: 120px; overflow: hidden; width: 100%; }
It will center your header too... that is if you want your header centered (?)
cheers
Pinky
March 16, 2013 at 8:23 am in reply to: Using AgenPress 2.0 – Displaying a logo in the top lefthand corner #27796Pinky
Memberooops my bad... you can then upload a custom background (or header lol)
Hope that's not too confusing!
cheers
Pinky
March 16, 2013 at 8:17 am in reply to: Using AgenPress 2.0 – Displaying a logo in the top lefthand corner #27784Pinky
Memberadd this code to your style.css below line 231
#title-area { background: url(http://dtconfidential.com/wp-content/uploads/2013/03/header37.png) no-repeat; }
then you should be able to upload a custom header image through your dashboard
cheers
Pinky
Pinky
MemberIf you give us the link to your site it'll make it easier to help
cheers
Pinky
Pinky
MemberYou do have to change the home.php & style.css
Take a backup copy of style.css & home.php before you start.
In your style.css go to line 767 and change from this
.home-bottom-1 { float: left; margin: 0; padding: 0 35px 0 0; width: 280px; }
to this
.home-bottom-1 { float: left; margin: 0; padding: 0 35px 0 0; width: 437px; }
Then go to line 774 and change from this
.home-bottom-2 { float: left; margin: 0; padding: 0; width: 280px; }
to this
.home-bottom-2 { float: left; margin: 0; padding: 0; width: 437px; } }
Then in home.php delete this:
<div class="home-bottom-3"> <?php if (!dynamic_sidebar('Home Bottom #3')) : ?> <div class="widget"> <h4><?php _e("Home Bottom 3", 'genesis'); ?></h4> <p><?php _e("This is a widgeted area which is called Home Bottom #3. It is using the Genesis - Featured Page widget to display what you see on the Agency child theme demo site. To get started, log into your WordPress dashboard, and then go to the Appearance > Widgets screen. There you can drag the widget into the Home Bottom #3 widget area on the right hand side.", 'genesis'); ?></p> </div><!-- end .widget --> <?php endif; ?> </div><!-- end .home-bottom-3 -->
cheers
Pinky
Pinky
MemberI think I can see the problem....
line 232 has :
.header-image #title-area, .header-image #title, .header-image #title a { display: block; float: left; height: 100px; overflow: hidden; padding: 0; text-indent: -9999px; width: 25%; }
so the way I see it - each section is 25% of the div it's in.
You have
header image
then the wrap
then title-area at 25% of the wrap
then title at 25% of the title-area
then title a at 25% of the titletry this... instead of this
.header-image #title-area, .header-image #title, .header-image #title a { display: block; float: left; height: 100px; overflow: hidden; padding: 0; text-indent: -9999px; width: 25%; }
give this a shot
.header-image #title-area { display: block; float: left; height: 100px; overflow: hidden; padding: 0; text-indent: -9999px; width: 25%; }
So you're just getting rid of
, .header-image #title, .header-image #title aHope that actually helps lol
cheers
Pinky
Pinky
MemberHi kellettj - I've just taken a look at your site and the logo is linked to your home page... did you mean something else?
cheers
Pinky
March 16, 2013 at 7:32 am in reply to: Looking for a plugin to duplicate a site in Multisite… #27723Pinky
Memberhey CK- one easy way to find out if that plugin will work - give it a try.
The reason I use the one from premium wpmu is that they guarantee their plugins all play nicely together - and as I run 3 rather large multisites I can't risk having a plugin stuff everything up for my clients.
So to answer your question - yes it will do a complete clone of a sub site.
I have a site completely setup with plugins, widgets, themes etc and that is my business default theme.
Then before I create a new client site I tweak the default site and make sure it looks right, so as soon as the client gets the auto email that their site is created their new site is pretty much ready to go.
I also use a plugin to save my widgets - so when I activate a new theme I can restore the default widgets for that site - so i don't have to manually create them every time.
cheers
Pinky
Pinky
MemberGlad it was helpful - I have that page and a few others in my bookmarks tab for quick reference
cheers
Pinky
Pinky
MemberI've just done a quick search for a plugin to do that, and there seem to be a few...
Take a look at this G search:
https://www.google.com.au/search?q=plugin+add+content+toend+of+post
OR
You could use the code similar to adding a signature image to the end of posts
// Add Signature Image after posts add_action('genesis_after_post_content', 'custom_include_signature', 1); function custom_include_signature() { { ?> <img src="http://yoursite.com/yourimage.png" alt="your image name here" /> <?php }}
I also find this page is really valuable and has helped me work things out : http://genesistutorials.com/visual-hook-guide/
Hopefully that helps a little
cheers
Pinky
March 15, 2013 at 10:53 pm in reply to: Quick question about header/footer in the Pretty Pictures theme… #27327Pinky
MemberI'm guessing you want to keep the twitter box under your name?
If so try adding this to style.css
#title-area { margin-top: -100px; width: 45%; }
If you want it beside your name try adding this too:
#header .widget-area { width: 50%; float: right; margin-top: -40px; }
To tweak the height from the top -you lessen margin-top: -80px; - just play with that number
Hope that was what you were looking for
cheers
Pinky
March 15, 2013 at 10:42 pm in reply to: Looking for a plugin to duplicate a site in Multisite… #27315Pinky
MemberYou can use a plugin to make the site you want to clone a default template - then you create your new site and select your clone default template.
It will create an exact copy of the original site.
I do this all the time for my multisites.
http://premium.wpmudev.org/project/new-blog-template/
cheers
Pinky
Pinky
MemberYou could try adding this to your style.css
#header .menu li li a:active, #header .menu li li a:active { background-color: #67ade7; }
cheers
Pinky
March 15, 2013 at 10:15 pm in reply to: Adding category/author title to the top of Archive pages #27301Pinky
MemberYou might be able to find what you are looking for here:
http://gregrickaby.com/2011/02/genesis-code-snippets.html
cheers
Pinky
Pinky
MemberI haven't tested this - but you could try:
function minimum_home_genesis_meta() { if ( is_active_sidebar( 'home-featured-5' ) || is_active_sidebar( 'home-featured-6' ) ) { add_action( 'genesis_after_home_featured', 'minimum_home_featured', 15 ); add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); add_filter( 'body_class', 'minimum_add_body_class' ); function minimum_add_body_class( $classes ) { $classes[] = 'minimum'; return $classes; } } } function minimum_home_featured() { echo '<div id="home-featured-bottom"><div class="wrap">'; genesis_widget_area( 'home-featured-5', array( 'before' => '<div class="home-featured-5 widget-area">', ) ); genesis_widget_area( 'home-featured-6', array( 'before' => '<div class="home-featured-6 widget-area">', ) ); echo '</div><!-- end .wrap --></div><!-- end #minimum -->'; }
then add something like this to style.css
.home-featured-5, .home-featured-6 { float: left; margin: 0; overflow: hidden; text-align: center; width: 50%; }
And then it's just a matter of putting the widgets in your home.php
cheers
Pinky
Pinky
Memberaround line 218 of your style.css you'll see
.header-full-width #title-area, .header-full-width #title, .header-full-width #title a { width: 920px; }
change it to:
.header-full-width #title-area, .header-full-width #title, .header-full-width #title a { width: 1117px; height: 244px; }
cheers
Pinky
Pinky
MemberYou can use a plugin My Custom CSS
Anything you put in there wont be overwritten when you upgrade your theme.
Plus always take a copy of your theme when you finish tweaking it - so you can always find any changed code - sorry that's a bit of hind sight
cheers
Pinky
Pinky
MemberCan you give us a link to your site please
cheers
Pinky
Pinky
MemberTo put it in the content area without the sidebar - just add the background: line to your #content in style.css
Like this:
#content { float: left; padding: 0 0 20px; width: 410px; background: url('http://www.lajardiniereverte.co.uk/wp-content/uploads/2013/02/Slider.jpg') bottom center no-repeat; }
If you want it to include the sidebar use this:
#inner { float: left; padding: 0 0 20px; width: 410px; background: url('http://www.lajardiniereverte.co.uk/wp-content/uploads/2013/02/Slider.jpg') bottom center no-repeat; }
Just change the url to be the image you want to use.
cheers
Pinky
Pinky
MemberIf you use the My Custom CSS plugin - anything you put in there will be used instead of any other style sheet.
Plus try adding
!important
just before the ; in your code
cheers
Pinky
-
AuthorPosts