I need help changing the following:

For this site: http://892.080.myftpupload.com/

I need help with updating the following:

  1. Jumbotron font color and yellow button colors? How do I add a period after the last word?
  2. Add the anchor links for the primary menu or adding demo menu?
  3. Change blog button color
  4. Change background color for form

This theme is wonderful and I’m sure my client will love the end result.

Thanks,
Blush Events

  1. To change the font color for the words try this CSS:
/*Trying to change color of jumbotron words*/

#header .bottom-header h2 {
	color: black;
}

To change the color of the yellow button, here’s the CSS I used:

/*Color of second button background*/
#header .bottom-header .header-button-two{
	background-color: #fff;
	color: gray;
}

#header .bottom-header .header-button-two:hover {
	background-color: #fff;
	opacity: 0.5;
	text-decoration: none;
}
/*End button background*/

As for adding a third period, that’s going to require adding code to the theme. I’m not sure I’m equipped to answer that one.

  1. I’m not sure what you’re asking here.

  2. Add this to your CSS to change the blog button color:

/*Change Blog Button Color*/
#latest-news .latest-news-button {
background-color: gray;
}
  1. And if you’re using Contact Form 7 (the suggested contact form plugin for this theme), head over to their documentation. They do a great job of explaining how to add style code to their forms. Here’s the link.

Hope that helps!

PERFECT, thanks! Code worked perfectly for all of the above. I figure out how to add the demo menu by creating custom links. Example: http://892.080.myftpupload.com/#services. I will look into adding code using Contact Form 7 features. and featuring out the period after the last word.

Lat but not least. How do I change the following:

  1. Change the Jumbotron font color? “lldy is a great one-page theme, perfect for developers and designers but also for someone who just wants a new website for his business. Try it now!”

  2. And the “Read More” link colors under blog?

To change the Jumbotron text color do this:

#header .bottom-header p { color: #PUT YOUR COLOR HERE'}

Thanks!