Forum Replies Created
-
AuthorPosts
-
incomeclubMember
I have found a solution with this code added to the functions.php file.
add_filter( 'genesis_comment_form_args', 'url_filtered' );
add_filter( 'comment_form_default_fields', 'url_filtered' );
function url_filtered( $fields ) {if ( isset( $fields['url'] ) )
unset( $fields['url'] );if ( isset( $fields['fields']['url'] ) )
unset( $fields['fields']['url'] );return $fields;
}incomeclubMemberThank you. That seems to work out very well.
incomeclubMemberI have found my problem. If you typed it in the visual editor it did not work. It does work if you type it in the text editor.
incomeclubMemberThank you. That seems to work. There is one issue that is browser related and my blog.
If someone is not using the browser as full screen, running the browser in a window, the left side bar width gets larger. Is it possible to configure the left side bar as a fixed width regardless how small the browser window is?
incomeclubMemberPlease look at this page:
http://www.blog.incomeclub.net/amazing-money-magnet/
I would like to move the content closer to the left sidebar.
incomeclubMemberAbout an hour ago I read about the hooks that are available and I was able to do this with the genesis_before_loop hook. I am now able to display an ad from Simple Ads Manager just above the first message.
incomeclubMemberNever mind... I figured this out. You need to drag one item over another item in the menu system.
incomeclubMemberNever mind... I figured it out. You need to drag the sub item over the top level menu item. This will create a sub item.
incomeclubMemberDoes anyone know how to add a submenu to each of the menu items?
incomeclubMemberThat would help wouldn't it?
It was a browser cache problem. That you very much for your assistance.
incomeclubMemberThe css change made no difference at all.
incomeclubMemberThank you Riavon for your assistance. You have a nice theme.
Just one last question. How can I extend the width of the main content. I have seen the following in the css file:
.content-sidebar-sidebar #content {
border-left: none;
padding: 25px 39px 30px 0;
width: 620px;
}This looks like the correct section but increasing the width from 620 to a larger number does not seem to have any effect. Do you have a solution?
incomeclubMemberI can see your message.
incomeclubMemberI just installed it today. You can see it at http://www.blog.incomeclub.net/
The css is back to the original.
incomeclubMemberI have found the code in the css file that controls the positions of the 2 side bars. It is as follows:
.sidebar {
display: inline;
float: right;
font-size: 14px;
padding: 25px 0 0;
width: 250px;
}#sidebar-alt {
float: left;
padding: 25px 0 0;
width: 150px;
}I wish to make the left side bar with a width of 180 and the right sidebar with a width of 220.
I have tried editing the widths but that did not work. The second sidebar was placed beneath the first sidebar. Does anyone know what changes that I need to make to this css file?
-
AuthorPosts