Forum Replies Created
-
AuthorPosts
-
jufo
MemberNevermind, found some articles on the web.
jufo
MemberI am very keen on understanding the difference between just letting Genesis go to work at SEO and using the yoast plugin. I am not sure whether I should install Yoast or not, does it make a lot of sense?
I'd be grateful for any tips here, thanks.jufo
MemberThat did the trick for me, but be sure to past the raw code, else your site will vanish like mine did and you will have to access the functions.php by ftp to fix it again.
jufo
MemberWhat worked for me is this
//* move nav to header
remove_action( 'genesis_after_header','genesis_do_nav' ) ;
add_action( 'genesis_header_right','genesis_do_nav' );
add_theme_support( 'genesis-structural-wraps', array( 'header', 'menu-secondary', 'footer-widgets', 'footer' ) );//menu-primary is removedjufo
MemberThat doesn't work for me, nothing appears there.
It might have to do with the multilingual plugin I am using, polylang, not sure.
Alternatively, I tried Brain Gardner's solution http://briangardner.com/reposition-primary-navigation/
and added
//* Remove the header right widget area
unregister_sidebar( 'header-right' );and then
//* Reposition the primary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_header', 'genesis_do_nav', 12 );but unfortunately that didn't change anything for me either.
jufo
MemberThank you, it solved my problem!
jufo
MemberSorry, like this
<a href="http://google.com" target="_blank">Google</a>jufo
MemberHe meant that you should post the code you inserted in the widget. The a tag is the link. It should look something like this:
jufo
Memberhi Somelad
I found the problem, thanks!
jufo
MemberI still haven't been able to resolve this problem, any advice on this?
jufo
MemberHi
I am also trying to place a link in a widget, like this
But if I click on the link, I get a 404 page and see that the URL of this page is like this:
http://www.mysite.com/http:/www.google.comI really don't have a clue why this is.....
I am using the altitude theme 1.0.0
March 22, 2015 at 2:26 pm in reply to: Altitude Theme – Transparency of home page main image #145225jufo
MemberThanks, yes it worked.
For this kind of gradient, there are actually four different numbers in each of the six different lines you have to change. I changes them to 0.1, 0.2, 0.4 and 0.7 (in bold below). The lines all start with 'background: ....'.
I changed mine to this and it is much better:
.image-section {
background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.4) 80%, rgba(0,0,0,0.7) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(30%,rgba(0,0,0,0.2)), color-stop(80%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0.7)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.2) 30%,rgba(0,0,0,0.4) 80%,rgba(0,0,0,0.7) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#e6000000',GradientType=0 );
display: table;
overflow: hidden;
table-layout: fixed;
width: 100%;
}Good luck.
-
AuthorPosts