Forum Replies Created
-
AuthorPosts
-
Krista
MemberTry changing scroll to fixed:
@media only screen and (max-width: 1140px).home-section-1,
.home-section-3,
.home-section-5 {
background-attachment: fixed;
background-position: top;
-webkit-background-size: auto;
-moz-background-size: auto;
background-size: auto;
}Krista
MemberHi there,
Forget what I said there - I had too many windows opening looking and was wrong. The default is scroll ( there wasn't an edit). Sorry for the confusion!!
Krista
MemberYou have edited the image sections background-attachment from fixed to scroll in the media queries - if you change it back to fixed the issue will resolve:
@media only screen and (max-width: 1140px).home-section-1,
.home-section-3,
.home-section-5 {
background-attachment: scroll;
background-position: top;
-webkit-background-size: auto;
-moz-background-size: auto;
background-size: auto;
}August 15, 2015 at 9:57 pm in reply to: Move Altitude Pro Secondary Navigation Menu to Right of Page #162488Krista
MemberHi there,
You just need to add text align to the secondary navigation:
.nav-secondary{
text-align: right;
}Krista
MemberHi there,
Yes, I agree - it looks like CPT using animate.css: http://daneden.github.io/animate.css/
Krista
MemberHi Carole,
I'm so sorry! The notification to this post went to my spam and I didn't see it till today. Hmmmm I'm seeing "We're having a make over".
Krista
MemberAre you using a Mac or PC? If you are using a Mac in Safari under Preferences --> General --> uncheck Open "safe" files after downloading. This will prevent the files from unzipping after download. Alternatively if you do not want to change your preferences you can hold down either the control key or option and click the download link and it will not unzip. I cannot remember which button though 🙂
January 7, 2015 at 10:12 pm in reply to: How Do I Change the height of primary nav with Sample Genesis theme? #136327Krista
MemberHi there,
There is padding added for the menu items line 954.
.genesis-nav-menu a {
color: #333;
display: block;
padding: 30px 24px;
}Try:
.nav-primary .genesis-nav-menu a{
padding: 10px 24px;
}You can change the padding values to whatever you like.
Take care,
Krista
MemberHi there,
It would be helpful to see the page. Currently the url links to a maintenance landing page.
Take care,
January 7, 2015 at 8:59 am in reply to: Just Can't Seem to Target this Title with Firebug! Help! #136285Krista
MemberIt looks like you have a custom stylesheet using:
.styles .home-even .widget-title{
color: #013440;
font-family: Oswald;
}Which also changes the widget title on home-section-4
If you want to style these individually I would remove this code and use either snippets provided by Tom or I to style each.
.home-section-2 h4 ( or .home-section-2 .widget-title )
.home-section-4 h4 ( or .home-section-4 .widget-title )example:
.home-section-2 h4{
color: *insert color code*;
font-family: Oswald;
}I hope this helps!
January 6, 2015 at 9:16 pm in reply to: Just Can't Seem to Target this Title with Firebug! Help! #136247Krista
MemberTom and I must've been replying at the same time 🙂 I think either snippet should work.
January 6, 2015 at 9:12 pm in reply to: Just Can't Seem to Target this Title with Firebug! Help! #136245Krista
MemberHey there,
The link isn't working. Try this:
.home-section-2 .widget-title
If it doesn't work and you get the website link fixed just reply and I will look again.
Take care,
Krista
MemberYou will need to use:
.metro-pro-red .genesis-nav-menu .current-menu-item > a
.metro-pro-red .genesis-nav-menu .current-menu-item > a:hover
January 1, 2015 at 4:19 pm in reply to: Gap between Solilquy Slider and Tagline in Minimum Pro #135827Krista
MemberAlso try adjusting the Slider Gutter under the Soliloquy settings. 🙂
January 1, 2015 at 3:48 pm in reply to: Gap between Solilquy Slider and Tagline in Minimum Pro #135826Krista
MemberHere is some info on styling the Soliloquy Slider:
http://soliloquywp.com/docs/guide-to-styling-soliloquy-with-css/
January 1, 2015 at 3:46 pm in reply to: Gap between Solilquy Slider and Tagline in Minimum Pro #135825Krista
MemberHi there,
Minimum Pro provides a home body class to target home page only. Try adjusting thing margin-top for the home page only using:
.minimum .site-tagline
Also it looks like the Soliloquy container has a margin bottom of 20px. I haven't used this particular slider but if you use Firebug or any other browser inspect tools you will see the styles applied.
Good luck!
Krista
MemberIt looks like the padding on the .entry-footer .entry-meta on line 1367
Good luck!
Krista
MemberTry removing the line height from the .entry-title.
Cheers,
Krista
MemberOne thing to check is that you are using the Genesis Responsive Slider and not the Genesis Slider. The Responsive Slider is the one used with Executive Pro.
Krista
MemberYou will find all the information on setting up the theme like the demo in the setup documents. You can find this in your My Studiopress downloads section --next to the download button for the Lifestyle Pro theme.
-
AuthorPosts