Forum Replies Created
-
AuthorPosts
-
Ozzy
Memberahh... you could do:
max-width: 1340px;
width: 100%if 1340 is the magic number... 1340 is kind of big, though
Ozzy
Memberi don't see the slider so i don't know exactly what you're trying to do, but if you want to make the header extend all the way across the page,
find #header .wrap
in your style.css and add
width: 100%;
sorry, Anita... looks like we were answering at the same time 🙂
Ozzy
MemberDecember 22, 2012 at 10:21 am in reply to: Stop header description from shifting when zooming in #6952Ozzy
Memberif you're not worried about responsive and just want to fix that issue, you could try going into your style.css, searching for #title-area and putting
white-space: nowrap;
into the styling of #title-area
I don't know if that will fix your problem, but i hope it helps!
Ozzy
Membertry putting this in your functions.php file:
remove_action('genesis_after_endwhile', 'genesis_posts_nav');
remove_action('genesis_after_endwhile','child_posts_nav');found @ http://desperatelyseekingwp.com/2011/10/genesis-framework-snippets/ via Nick Croft 🙂
December 21, 2012 at 10:29 pm in reply to: Navigation not wrapping correctly for responsive layout #6882Ozzy
MemberDecember 21, 2012 at 9:17 pm in reply to: Is an automatic 'view full site' for all mobile devices possible? #6864Ozzy
Memberin your functions.php file, find the line line that shows and either remove it or adjust it based on how you'd like your content to look. check out this page http://webdesignerwall.com/tutorials/viewport-meta-tag-for-non-responsive-design for some ideas
you'll then have to remove all of the media queries that control the responsiveness of the site. those should be near the bottom of your style.css.
Ozzy
Memberhmm... it deleted the link to the article. http://genesistutorials.com/function/genesis_register_sidebar/
December 21, 2012 at 8:43 pm in reply to: Navigation not wrapping correctly for responsive layout #6846Ozzy
Memberit looks ok in portrait, but it looks like you need to edit the responsive for the landscape view a bit. have you changed those to percentages as well?
Ozzy
MemberI'll do what I can as well... I'm fairly new to the Genesis framework and StudioPress, but have fallen in love with it and will be the only framework I use for new client designs, if given the choice.
I'll try and come in and answer what I can as well as learn from those who have more experience with StudioPress themes!
December 21, 2012 at 8:24 pm in reply to: Executive – Split Home-Slider Sidebar with Genesis Responsive Slider and Widget #6844Ozzy
Memberprobably the easiest way to do this is by adding classes to the widgets as you register them.
using Genesis' columns will be a great help. so when you're registering your widget areas in your functions.php file, for the <div id="genesis_responsive_slider" add a class of two-thirds or three-fourths. add a class to the of one-third or one-fourth.
so your divs would look like:
i hope that helps!
Ozzy
MemberDecember 21, 2012 at 2:23 pm in reply to: Education Theme – Responsive design not workin on iPhone or smartphones #6729Ozzy
MemberDecember 21, 2012 at 2:15 pm in reply to: Education Theme – Responsive design not workin on iPhone or smartphones #6723Ozzy
Memberon or near line 751, you have
#inner .wrap {
margin: 0 auto;
width: 1140px;
}change the width: 1140px; to max-width: 1140px;
hope that helps!
Ozzy
Memberfind the following code:
body,
h1,
h2,
h2 a,
h2 a:visited,
h3,
h4,
h5,
h6,
p,
select,
textarea {and change
font-family: "Century Gothic",AppleGothic,Arial,sans-serif;
to your font of choicehope that helps!
Ozzy
MemberHello Katrina,
Search for this line in your css:
.sidebar .widgetand remove the following lines:
border-top-left-radius: 10px;
border-top-right-radius: 10px;that should do the trick!
Ozzy
Memberif you change the margin on:
#featured-full .widget,
#featured-top .widget,
#featured-bottom-stuff .widgetto margin: 0, it goes away.
Ozzy
Membertry something like this:
<?php if ( is_singular() && is_author('Author Name') ) {?>
Ozzy
Membertry putting the favicon.ico in the images folder of your child theme. clear your browsers cache and refresh the page. that should do the trick.
Ozzy
Member -
AuthorPosts