melanie bund
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: add search to sidebar menu that is not widget(ed)Thank you loor – so much!!!
MelanieForum: Fixing WordPress
In reply to: add search to sidebar menu that is not widget(ed)Hi Matt thank you soooo much for answering.
The twenty twelve menu is fine in iphone view as i realised the wp had changed the <h3> tag to <button> unfortunately had to upload a plugin to as i couldnt style the toggle menu – the problem with the menu is in anything larger – ipad landscape, or even a small monitor – the menu appears on 2 lines and i have no idea how to keep it on one line – shrink text on smaller screens? make the padding a % ?thnk you
Melanie
PS.
My sidebar is not dynamic/widget side bar it is a custom menu so through admin i cant add a search field. But i found some code that works!
‘add_filter(‘wp_nav_menu_items’,’add_search_box_to_menu’, 10, 2);
function add_search_box_to_menu( $items, $args ) {
if( $args->theme_location == ‘sidebar-profile’ )
return $items.get_search_form();return $items;
}’Forum: Themes and Templates
In reply to: twenty twelve menu wont toggleok i solved the problem – the menu toggle in the header is no longer <h3> BUT <button>
<h3 class=”menu-toggle”><?php _e( ‘Menu’, ‘twentytwelve’ ); ?></h3>
is now
<button class=”menu-toggle”><?php _e( ‘Menu’, ‘twentytwelve’ ); ?></button>so now could you please tell me why on ipad landscape the menu goes on to 2 lines – or where i can go to get some help
PLEASE HELP!Forum: Plugins
In reply to: keep users out of admin and wp-admin/profileHi I have solved the blockig of Admin to users by adding below ode to function.php – if any one is interested
‘add_action( ‘init’, ‘blockusers_init’ );
function blockusers_init() {
if ( is_admin() && ! current_user_can( ‘administrator’ ) &&
! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}’NOW – I still need to direct a single user with editor role to a specific page
ANY IDEAS
Thank you in advance
MelanieForum: Themes and Templates
In reply to: twentytwelve menu wont toggleAM POSTING AGAIN – 3RD TIME LUCKY
Hi Am having problems – the twenty twelve menu wont toggle – i saw a post that says you need to change
‘display: inline-block !important;’ to ‘display: none !important;’
but it does not seem to work
below is site link:
https://photohunters.org/photohunters/Hope someone can help as dont want to use a plugin solve it
Thanks
MelanieForum: Fixing WordPress
In reply to: image bigger than 2.5M doesn’t generate thumbHi – my problem is not handling big sized files – its finding out how to manipulate/tweek the wp_crop_image routine to create a thumbnail from large files
thank you
MelanieForum: Fixing WordPress
In reply to: image bigger than 2.5M doesn’t generate thumbHi Contentiskey
i NEED that my site is able to upload images around 5mb – that is my problem
i can bump up the size no problem, but wp wont generate a thumbnail
‘<?php
ini_set(‘upload_max_size’,’1000M’);
ini_set(‘post_max_size’,’995M’);
ini_set(‘max_execution_time,’300’);
?>’
thank you and HELP!
MelanieForum: Themes and Templates
In reply to: twentytwelve custom sidebars not showing even in page sourcethank you so much stephen and alchymyth
replicating the main menu in sidebar – only way i could solve is to have no widgets and register a second menu, when i add custom menu as widget i just get a copy of the main menu plus the custom menu for some reason.The code kindly given above does not seem to have any effect, so will ty and fiddle with the css and see if i can get it to work that way
thank you again
MelanieForum: Themes and Templates
In reply to: twentytwelve custom sidebars not showing even in page sourceyes the sidebar is on the right underneath the content and when i view on firefox the main menu repeats and the custom menu is no where in sight
Forum: Themes and Templates
In reply to: twentytwelve custom sidebars not showing even in page sourcethanks alot that really helped side bar appears on page but below content for some reason but that may be a css problem, what is ODD is that it replicates the main menu plus the custom sidebar menu???
https://clivemabey.me.uk/Seals/members/
The custom menu is from “GREY SEAL INFO to CONSTITUTION AND COMMITTEE” and the main menu seems to be wrapped around it???
thanks
HELP
melanieForum: Fixing WordPress
In reply to: wordpress comments in fancyBox popup lightboxthank you so much for your help
MelanieForum: Fixing WordPress
In reply to: wordpress comments in fancyBox popup lightboxHi singdogtech
Yes but it uses fancybox as the lightbox which is freeware, and i was hoping that i could add something to the jquery.fancybox.css or the jquery.fancybox.js to create the comments boxthank you
MelanieForum: Fixing WordPress
In reply to: wordpress comments in fancyBox popup lightboxHi songdog tech
No its a jQuery gallery with lightbox, and uses fancybox as its lightbox ( https://codecanyon.net/item/megafolio-pro-responsive-grid-jquery-plugin/3782456 )test site
https://bunddesign.com/pdm/portfolio/Melanie
Forum: Themes and Templates
In reply to: TWENTY TWELVE Content background colourHi Jan and Reece
Yes i have removed the
‘border-bottom: 4px double #ededed;’
from
‘.site-content article’
in my child .css – is there anywhere else in the style sheet that overrides it?
The code below only seems to do work on full page template
https://bunddesign.com/pdm/photography/
‘#main .wrapper {
background: #fff;
}’
on default page template as below – nothing
https://bunddesign.com/pdm/lets-talk/
HELP!?
MelanieForum: Themes and Templates
In reply to: TWENTY TWELVE Content background colourThank you so much for your help
The footer advice worked great, though there seems to be a ghost outline around the page which i cant seem to get rid of. Any ideas?
Removing the
.site-content article
border-bottom: 4px double #ededed;
has no effect for some reason.
AND
my last and important quandary is
to make the content background white i added to the css
#main .wrapper {background:white}
but nothingHELP
Melanie