Forum Replies Created
-
AuthorPosts
-
Pinky
Memberyou should just be able to add
height: 20px;
or whatever you need it to be to your style.css
cheers
Pinky
Pinky
MemberLooks just fine to me - have you fixed this?
If you have please mark this as resolved
cheers
Pinky
Pinky
MemberYou might find what you are looking for here:
Hope that helps
cheers
Pinky
Pinky
MemberHi Olafur
You put in it your style.css
It should be around line 693
and you are looking for:
#home-middle {
You should see:
#home-middle { clear: both; overflow: hidden; }
change it to:
#home-middle { clear: both; overflow: hidden; opacity: 0.4; }
If you want it to be normal when you hover over it - add this code:
#home-middle { clear: both; overflow: hidden; opacity: 1; }
cheers
Pinky
Pinky
MemberFor the drop down menu go to Appearance > Menus and you can create a custom menu in there with drop downs. Make sure your Genesis theme settings allow a drop down menu.
For the sidebar only on one page - I do this a LOT!
I use a plugin called Custom Sidebars.
It's very user friendly and you can set default sidebars for different categories, pages, posts, custom taxonomies and more!
Good luck
cheers
Pinky
Pinky
MemberI think I understand what you mean about the H1 & H2
So on your site just quickly I can see:
h1, h2, h2 a, h2 a:visited { font-size: 25px; }
To separate it just do:
h1 { font-size: 25px; font-weight: bold; color: #432C28; } h2 { font-size: 20px; color: #a3986d; } h2 a { font-size: 15px; color: #B15557; } h2 a:visited { font-size: 10px; }
... at least that's how I do it
The drop down - do you mean when it drops down you want the box to align with the right hand side instead of the left? If so you can do that cause I've done it before - just can't remember how at the moment... if I find it I'll letcha know!
Can't help with the rest - soz
cheers
Pinky
Pinky
MemberNo worries Michael
If you are using Chrome - just hit f12 to view the code and you can play around in there to get what you need... it even makes me look good bahaha
cheers
Pinky
Pinky
Memberhi Richard
Any chance of a link so we can see what's happening?
cheers
Pinky
Pinky
MemberHey Annaedv
If you want to center all of your galleries you can try this code:
.flexslider {
background: #fff;
position: relative;
zoom: 1;
float: none !important;
left: 35%;
}If you want to center just that one gallery use this:
#ngg-gallery-10-1094 {
left: 35%;
}
cheers
Pinky
Pinky
MemberHi Michael
The css for your home page is specifically for your home page.
If you want the same code JUST for the bottom section of your entertainment page try this in your style.css:
<code>
.entertainment-bottom p {
font-size: 13px;
line-height: 20px;
}.entertainment-bottom h2,
.entertainment-bottom h2 a,
.entertainment-bottom h2 a:visited {
font-size: 20px;
line-height: 24px;
}</code>
good luck!
cheers
Pinky
cheers
Pinky
March 15, 2013 at 7:44 pm in reply to: How do I remove the bottom footer from the Agency theme? #27238Pinky
Memberhey there -there's a guide here that shows you what to change and where:
If you want to remove the footer use this code in your functions.php file of your theme:
<code>
<?php
/* Remove Footer */
remove_action('genesis_footer', 'genesis_do_footer');
remove_action('genesis_footer', 'genesis_footer_markup_open', 5);
remove_action('genesis_footer', 'genesis_footer_markup_close', 15);
</code>
cheersPinky
cheers
Pinky
-
AuthorPosts