Forum Replies Created
-
AuthorPosts
-
You’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
First 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
If 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
Just below that entire block (after the closing bracket) add the one I gave you.

Monica | jesterstear on twitter | monicaguerraleiria.com
Try using the Cyclone Slider 2 plugin, it should fit all your needs.

Monica | jesterstear on twitter | monicaguerraleiria.com
In 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
Style .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
I 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
February 5, 2013 at 12:45 pm in reply to: Multisite: Have subsites but one of which I want unique CSS for #18256Yes, 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 #18157Have 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? #17390Nick The Geek’s Genesis Responsive Header plugin should solve all your woes.

Monica | jesterstear on twitter | monicaguerraleiria.com
To 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
-
AuthorPosts