Forum Replies Created
-
AuthorPosts
-
rocketeerMember
Maybe this plugin would work: https://wordpress.org/plugins/meta-box/
rocketeerMemberIf Studiopress created a plugin as discussed in the video it would give the Genesis framework an upper hand compared to competing frameworks.
rocketeerMemberI think I'm after what they discuss at 25:15 here: https://www.youtube.com/watch?v=WlmNjdZ5EGU
As usual, the Genesis Framework becomes very technical for non-programmers like me.
Thanks anyways for your suggestion, which seems to be in line with what the developers discuss in the video above.
rocketeerMemberI want to do both. The markup in the plugin was very sparse and did not address the snippets found by the structured data tool.
When I run one of my inner pages to the structured data tool, I find four snippets:
WebPage
WPHeader
CreativeWork
SiteNavigationElementWhen I run my front page on the AltitudePro theme, I find:
WebPage
Organization
WPHeader
CreativeWork
SiteNavigationElementSo I'd like to both enhance/add more info to the snippets already added by Genesis following the information here:
http://schema.org/docs/full.htmlAnd also add new snippets. Like LocalBusiness and Organization to the inner page. I'm not sure how to do this properly.
rocketeerMemberThanks! I tried the plugin and it's not well built out. I think a more manual approach is better.
When I edit a page there is a meta box called Scripts.
How would I create a similar meta box that I would call Microdata for pages and posts? And somehow direct where the code shall be pasted, for example after the <head> tag. Will this code conflict with the built in Schema markup?
Thanks!
rocketeerMemberI've updated the HTML markup and the CSS file and now the spacing works properly. But only on Front Page 1, 3, 5 and 7. On Front Page 2, 4 and 6 the spacing between the buttons is not working properly. What could be the cause of this?
rocketeerMemberI think the problem is that my site doesn't behave like the demo site.
I removed the non-breaking spaces and now there is no spacing at all. But in the demo site there is a spacing.
I can't find what's causing this difference. The code is in the text widget in Front Page 1.
<p> <a href="https://flarenote.com/lets-talk/">Light Your Flare</a><a href="#front-page-2">Find Out More</a> </p>
rocketeerMemberThanks for the link. The problem is clearly displayed in the 320 px view.
I have the below code for media query:
@media only screen and (max-width: 480px) {.image-section h2,
.solid-section h2 {
font-size: 40px;
}}
What code shall I add to have the buttons not overlapping?
rocketeerMemberOK! So I found out it was one of the other CSS properties I needed to change:
.tri-state-footer .widget {
margin-bottom: 130px;
}.footer-widgets .widget {
margin-bottom: 40px;Now it looks really good.
This was a bit too advanced for me. But with Genesis you have to be a bit more advanced 🙂
Thanks for your help!
rocketeerMemberThanks,
Now the text is white. But the bottom margin was only allowed to increase by some pixels. And I can't change the background color in that area. If you take a look you see that it's whiteish background and the hight is only 50 or so pixels.
Do you have any suggestions 🙂
rocketeerMemberSo I managed to conditionally remove the Footer 1 widget on some pages that I choose 🙂
Please take a look here:
The blue footer is the new footer I've added. But it has black text. Also the bottom padding is much smaller than Footer 1 widget.
What I'm after is to have the new footer (the blue one) have the same CSS properties (visualisation) as the Footer 1 widget.
What CSS have I missed to change?
Thanks 🙂
rocketeerMemberThanks for the reply.
I managed to register the new widget and display it with a conditional hook
similar to below://* Add the page widget in the content - HTML5
add_action( 'genesis_entry_footer', 'nabm_add_page_content' );
function nabm_add_page_content() {
if ( is_page('ID') )
genesis_widget_area ('pagewidget', array(
'before' => '<div class="pagewidget"><div class="wrap">',
'after' => '</div></div>',
) );
}1. How do I remove the Footer 1 widget? I can't see it anywhere in functions.php or in style.css.
I tried to copy all of the CSS for the Footer Widgets and adding my custom footer.
But the text in the footer is black. Adding color: #fff; doesn't seem to help.2. How can I change the text in the custom-footer to display with white color as in Footer 1 widget?
Thanks 🙂
/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */.custom-footer,
.footer-widgets {
background-color: #22a1c4;
clear: both;
text-align: center;
position: relative;
z-index: 9;
}.custom-footer,
.footer-widgets .wrap {
padding-bottom: 100px;
padding-top: 100px;
}.custom-footer,
.custom-footer .wrap a,
.custom-footer .wrap a.button {
color: #fff;
}.footer-widgets,
.footer-widgets .wrap a,
.footer-widgets .wrap a.button {
color: #fff;
}.custom-footer,
.footer-widgets .wrap a.button2 {
color: #fff;
}.custom-footer,
.footer-widgets a:hover {
color: #000;
}.custom-footer,
.footer-widgets li {
margin-bottom: 10px;
padding-bottom: 10px;
}.custom-footer,
.footer-widgets .widget {
margin-bottom: 40px;
}.custom-footer,
.footer-widgets p:last-child {
margin-bottom: 0;
}rocketeerMember"What we're all about" text widget is indexed as http://domain.com/featured-1/ with an author.
I've used the Yoast plugin and unchecked the authors but seems it still indexes the authors for various widgets built in to the theme.
Thanks for the answer.
rocketeerMemberThanks bro!
-
AuthorPosts