Forum Replies Created
-
AuthorPosts
-
ᴅᴀᴠɪᴅMember
The Genesis Featured Page widget always shows the content from the page that you're linking to. If you need it to lead to a different page, then you could setup a redirect so it goes to another page.
Another way would be to use a plugin such as Genesis Featured Page Advanced, which extends the functionality of thet widget and allows custom text to appear in place of the content, so you can control what text appears on the home page.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberok right, I was on the wrong site.
It's because 'http://biblicalelearning.org/wp-content/themes/parallax-pro/images/old_map.png' doesn't exist and is bringing up a 404 error.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberFlex box is a good way of easily creating equal height columns. You can see an example here, but you;d need to ammend the stylesheet and add your own classes. Genesis isn't a css framework.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberi can see the changes here. I can see texture on the site header. But not the footer.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberYes, the most recent date will appear in the google results page.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberThe content has a max width of 680px, so any images you put inside content just need a width of 680px, or 1360px if you're using a retina plugin.
The featured image at the top is always full width, so it doesn't have a set width. Depending on what screen you're viewing it on. You'd just need to make sure the image you upload is large enough to look sharp on large screens.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberit's because it needs a class of '.offscreen-content-toggle' not ID.
See /js/global.js to see how it works.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberto clarify.. i mean change this
.page > .entry-content { border: 20px solid #0063ff; padding: 2% 1.5% 0; }
to perhaps this..
.home-bottom .entry-content { border: 20px solid #0063ff; padding: 2% 1.5% 0; }
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberYou need to be much more specific with your CSS. You can't just put '.page' as this appears quite a lot in WordPress and it to vague - which page?
ie if you're just wanting the border on the home page, you should put '.home' or better yet target the specific widget area '.home-bottom' etc.
I love helping creative entrepreneurs build epic things with WP & Genesis.
June 25, 2017 at 11:24 pm in reply to: Limiting enews extended width in Atmosphere Pro footer widget #208271ᴅᴀᴠɪᴅMemberI can see it working fine. It sounds like you need to clear your browser cache.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberYou can either choose the 'image' widget instead of the text. Or just add an image into the text widget via html, like you would in a post or page. ie
<img src="https://yourwebsite.com/image-url">
See.. how to add images to widgets
I love helping creative entrepreneurs build epic things with WP & Genesis.
June 25, 2017 at 3:25 pm in reply to: Limiting enews extended width in Atmosphere Pro footer widget #208266ᴅᴀᴠɪᴅMemberThe only thing i'd change is to use classes instead of ID, so incase you change the enews widget in the future, it won't change the styling.
.footer-widgets-1 .enews-widget { margin-left: auto; margin-right: auto; max-width: 600px; }
But it's the same thing really.
I love helping creative entrepreneurs build epic things with WP & Genesis.
June 25, 2017 at 3:23 pm in reply to: Limiting enews extended width in Atmosphere Pro footer widget #208265ᴅᴀᴠɪᴅMemberThat should work, however it hasn't been added to the site from what I can see. But the CSS is correct.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberI doesn't matter. You can set it up however you want, using the column classes inside one text widget (which is the manual way if you need more control) or just adding multiple widgets into that widget area will automatically arrange it into columns, depending on how many widgets you add.
Here are the layout options depending on how many widgets you add;
All explained in the setup instructions.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMembereg;
//* Add body class add_filter( 'body_class', 'custom_body_class' ); function custom_body_class( $classes ) { $classes[] = 'js'; return $classes; }
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberSome themes do a check to see if the browser has JS enabled. They do this by simply adding a 'js' class to the html element. As the JS has to load, sometimes you'll see a flash of the non-JS menu, before the class is added, due to slow loading time.
It's important for it to be there, otherwise people who visit the site without js enabled won't be able to see the menu on smaller screens. If you really want to get rid of it.. one way would to just add 'js' body class to your entire site. This way the CSS would work straight away and wouldn't need to wait for the class to be added.
I love helping creative entrepreneurs build epic things with WP & Genesis.
June 24, 2017 at 4:55 pm in reply to: Monochrome Home – Adding Background Image like on posts to pages #208249ᴅᴀᴠɪᴅMemberAll the code that adds the large background images to the single posts is located in themes/monochrome-pro/single.php, that's why it only works on single posts.
You could create a file named page.php and move the code in there. It may need some slight tweaks though.
Another way would be to move the code into functions.php and then add conditionals such as is_page and is_single() to make it work where you need it to.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberyou're better off changing the actual output in php, rather than outputting the whole thing and trying to hide it with CSS.
It's written in the StudioPress documentation
If you're not comfortable with php, then just install Genesis Simple Edits plugin, which'll allow to delete everything apart from the date from within the plugin settings.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberYou also need JS to add a class when the user scrolls.
tbh there are lots of tutorials about this on google. Here's one.
I love helping creative entrepreneurs build epic things with WP & Genesis.
ᴅᴀᴠɪᴅMemberi can't see anything else that is dependant on it having position relative. To be sure though, I'd contact the theme author. this is something that should work well out of the box, so it's worth them knowing about it anyway.
I love helping creative entrepreneurs build epic things with WP & Genesis.
-
AuthorPosts