Forum Replies Created
-
AuthorPosts
-
Ozzy
Memberi would think anyone who wants to look at your code to copy it would know how to get around that.
as far as copying text, you can probably still select the text and control + C it...
Ozzy
MemberOzzy
Memberit's easily worked around so it's pretty pointless.
if you absolutely must have it, you can see an example here: http://www.devcurry.com/2009/11/disable-right-click-easily-using-jquery.html#.UcjrLxZC4eU
Ozzy
Memberthe login is placed at the bottom in the footer. it's behind the "see pricing and buy theme" button.
as far as the contact form, you can find it here: http://demo.studiopress.com/agency/contact
it's using gravity forms, which is a paid plugin, but you can use other contact forms from the WordPress repository.
Ozzy
Memberit's the way safari is handling the table. if you look at it the way firefox renders it, it looks ok.
it looks like the first row, you need to add th instead of td. <thead> doesn't do anything.
Ozzy
MemberOzzy
Memberit's hard to say without the issue being present. can you recreate the problem on another site for us to see what is happening?
not that it should be an issue, but i'd try upgrading to the latest version of genesis as you're running 1.8.2 and the latest is 1.9.2.
Ozzy
Memberdid you change it to something else? i'm not seeing anything here.
Ozzy
Memberyou can make the slider wider if you wish, but it's that size because it looks good and the rest of the theme is made for that slider size.
can you provide a link to the site? if you're talking about the Menu, that would be under Appearances > Menu and you can see the menus. it's just a matter of changing where the home page is linked to.
Ozzy
MemberOzzy
Memberi've never seen that before... you could always update it manually if you're seeing the problem.
Ozzy
MemberOzzy
Memberhave you tried editing the file locally and uploading it using FTP?
June 22, 2013 at 8:27 pm in reply to: Help to customize header in Apparition to be responsive #47250Ozzy
Memberif you upload an image to use as the header, it won't be responsive.
you can add a smaller image in the #header #title a with the actual logo and give the #header a background of the blue color you're using.
the other thing you can do is at the media query that the widget area goes full width, 768px wide (i think), you can change the .header-full-width #header to a blue blackground and have the #header #title be a smaller image that includes the logo.
Ozzy
MemberOzzy
MemberOzzy
Memberi've never used the widget like you're using it, but i found this on a previous question asked on the plugin page and it's to add this to your functions.php:
add_action( 'pre_get_posts', 'child_change_home_query' );
/** Changes the query on the home page*/
function child_change_home_query( $query ) {if( $query->is_main_query() && $query->is_home() ) {
$query->set( 'posts_per_page', '5' );//change the '5' to the posts setting for your widget
}}
the answer was taken from here: http://wordpress.org/support/topic/plugin-genesis-featured-widget-amplified-older-posts-not-working?replies=12
Ozzy
Membersome of it will depend on the theme you're using and how the menu is set up, but some CSS should do the trick.
Ozzy
Memberi'm seeing posts that have an h1. the only page with a title i saw was the contact page. can you add a link to a page or post where you see this happening?
nevermind... you must have figured it out!
Ozzy
Memberit doesn't seem like it's saving as the body class is still content-sidebar-sidebar.
can you take a screenshot and upload it as what the page editor layout options for that page look like?
-
AuthorPosts