Forum Replies Created
-
AuthorPosts
-
JestersTearParticipant
min-height
only changes the minimum height of what you're targeting, ie it will never be shorter than 40px, but it can always be taller if it needs to be. You would have to useheight
if you wanted to specify a fixed height, ormax-height
if you want it to be no taller than X amount of px.This poses the problem of the site's name being in two lines and therefore getting cut off. To fix that you'd need to find
.title-area
and, where it sayswidth: 320px;
change the width size so that two lines can become one.Hope this helps!
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantFirst of all you need to clear all floats on your secondary navigation bar so that it doesn't feel tempted to occupy more than what it should. Find
.nav-secondary {
and addclear: both;
to it as in the example below:.nav-secondary { clear: both; }
(Please add
clear: both;
to the rest of the code that's under.nav-secondary {
, don't delete what's already there.After that, if you want the space next to the primary navigation to show the background, you need to find
.site-container {
and remove the line that saysbackground: #fff;
. Now the rest of your site is transparent so, to bring the white back in, addbackground: #fff;
to.site-inner {
and you should be good.Let me know if you run into any issues!
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantYou're welcome Thomas. As to me being quick, you might not realise this, but this isn't an official StudioPress support forum, and I (and about 99% of the people who are here helping out) am not a StudioPress employee. We're StudioPress clients (like yourself) and aficionados who like to help out whenever possible.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantFirst of all, you should space out your code. Right now you have
.genesis-nav-menu a {
display: block;
padding: 24px 20px;
padding: 1.5rem 1.25rem;
position: relative;
}.genesis-nav-menu a:hover {
background: #000;
color: #fff; }Hit enter twice between the first closing bracket and the dot so that you have:
.genesis-nav-menu a {
display: block;
padding: 24px 20px;
padding: 1.5rem 1.25rem;
position: relative;
}.genesis-nav-menu a:hover {
background: #000;
color: #fff;
}
Now, change the last bit of code to read:.genesis-nav-menu a:hover,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a {
background: #000;
color: #fff;
}and you should have white links on a black background.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantYou're very welcome, glad I could help! 🙂
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantIf you search for all instances of #e04b4b and replace them with your desired colour, all the reds should change.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantJust below that entire block (after the closing bracket) add the one I gave you. 🙂
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantTry using the Cyclone Slider 2 plugin, it should fit all your needs. 🙂
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantIn your style.css find all instances of .executive-red that have the red you want to replace (the hex code you'll be looking for is #e04b4b) and insert in your desired hex code. So, basically, find and replace #e04b4b with the red you do want.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantStyle .genesis-nav-menu a:hover and you'll be good to go. For example:
.genesis-nav-menu a:hover {
background: #000;
color: #fff;
}
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantI was trying to help before realising that it's the forum hopelessly mangling code, instead of a specific mistake in the code itself. Will come back if I think of something useful!
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipanta:hover.social-buttons {
color: #333;
}😉
Monica | jesterstear on twitter | monicaguerraleiria.com
February 5, 2013 at 12:45 pm in reply to: Multisite: Have subsites but one of which I want unique CSS for #18256JestersTearParticipantYes, Jetpack is connected to WordPress.com on a subsite-by-subsite basis. I'm by no means saying this is the only solution, but it was the first that popped to mind. I'm in the process of creating my own multisite network, so if I come across a better way I'll revisit this thread. 🙂
Monica | jesterstear on twitter | monicaguerraleiria.com
February 5, 2013 at 2:41 am in reply to: Multisite: Have subsites but one of which I want unique CSS for #18157JestersTearParticipantHave you considered activating Jetpack and using its Edit CSS module? It seems like the easy solution here, although I'd advise that you copied your edits onto a text file as backup.
Monica | jesterstear on twitter | monicaguerraleiria.com
February 2, 2013 at 12:53 pm in reply to: Everything Is Responsive Except Header Image – What Gives? #17390JestersTearParticipantNick The Geek's Genesis Responsive Header plugin should solve all your woes. 🙂
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipant🙂 You're very welcome, glad I could help!
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantTo reduce the body font: reducing this one (I've bolded the relevant selector and have the font size in red) should do the trick.
body,
h1,
h2,
h2 a,
h2 a:visited,
h3,
h4,
h5,
h6,
p,
select,
textarea {
color: #333;
font-family: ‘Open Sans’, sans-serif;
font-size: 15px;
line-height: 1.6;
margin: 0;
padding: 0;
text-decoration: none;
}To reduce the post's title change:
h1, h2, h2 a, h2 a:visited {
   font-size: 48px;
}Neither of these will help with your table problem, though, because your Order Now images are too big.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantTry removing what you tried to do to the header - ie remove:
/** Remove the site title */
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );/** Remove the site description */
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );/** Modify the header URL */
add_filter('genesis_seo_title', 'custom_seo_title', 10, 3);
function custom_seo_title($title, $inside, $wrap) {
$inside = sprintf( '<a href="http://www.rcmedreview.com" title="%s">%s</a>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') );
$title = sprintf('<%s id="title">%s</%s>', $wrap, $inside, $wrap);
return $title;
}then, in the header options, tell it to not display text along with your image, and see if that helps.
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantThat setting only shows up when the header *isn't* uploaded through Appearance (otherwise it should be automatic). Do you have a link to your site/can you post the contents of your functions.php?
Monica | jesterstear on twitter | monicaguerraleiria.com
JestersTearParticipantI feel like I might have tried to start with the ending, rather than the beginning. Let me try this anew:
- If your header is an image that you can upload via Appearance > Header, then it should already automatically link to your homepage without you needing to do anything; if it isn't doing that, I have no idea what's causing it.
- If, on the other hand, your header is an image you're using via the background: url(imageurlhere); css property, then what I said in my first post is the answer, and there's a screenshot here to better illustrate it. Please let me know if this helps.
Monica | jesterstear on twitter | monicaguerraleiria.com
-
AuthorPosts