.jpg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Eleven – remove margin top of page?or add
function my_function_admin_bar(){ return false; } add_filter( 'show_admin_bar' , 'my_function_admin_bar');
to your theme’s functions.php file ??
Forum: Themes and Templates
In reply to: Trying to edit a templatejkociba – in the top right hand side, make sure the theme stated in the select theme to edit drop down menu is in fact the theme that is installed and running.
Forum: Themes and Templates
In reply to: Move Header Text above menu and header imageGlad it worked ??
Forum: Themes and Templates
In reply to: Move Header Text above menu and header imageGROGL – you need to change it actual plugin code (this may not be the greatest idea!?!?)
Anyway – here’s how you do it… Go to:
Plugins > edit (under the plugin title) > upper-menu-for-twenty-eleven/upper-menu.css (on the far right hand side)
#access is the second id down. Hope this works for you ??
Forum: Themes and Templates
In reply to: Add Page Templateyou have a div with an class of twocolumns – change it to full-width then create the class .full-width in your CSS file and give it the full width dimensions of the page and whatever other styles are relevant (remember to take into consideration the other relevant styles i.e. padding, etc) when setting the width).
Forum: Themes and Templates
In reply to: Move Header Text above menu and header imageHi GROGL
You Menu (#access) is positioned using absolute positioning so it doesn’t matter that you have moved your hgroup above it. You need to change the CSS positioning (it is currently set to – top:0; 130px would move it below the header txt and above the image). Not sure that this is the best way but would def work ??Forum: Themes and Templates
In reply to: Add Page TemplateHi bsl64
You need to create a new page in your theme directory… (this is the simplest way to add a new Page Template) Then add the following code to the top of the page… followed by the rest of the code to run your content… Remember to change “Template Name” to whatever you want the template to be called ?? – then in the page admin change the template from default to your custom one…<?php /* Template Name: Template Name */ ?>
Forum: Plugins
In reply to: ACF thumbnails not working on IOs or androidalso… I have worked out the problem… this address (https://lucyanne.co/wp-content/uploads/2011/09/decorepeat02.jpg) does not work on devices such as ipads and smartphones (to be honest has only tested on Galaxy S2 and iphone 3GS and 4 smartphone-wise). However this one (https://lucyanne.co/wp-content/themes/lucyanne/images/album/thumbs/flies2.jpg) does. So I changed where WP is uploading to (I added a folder called “upload”) – thus, all files uploaded are going into my theme (not ideal I know but if it works…?). This did not work e
ither. Have gone back to default upload folder. Still not working.Forum: Hacks
In reply to: "title" not showing page on custom front page*Bump – this is still a headache.
Forum: Hacks
In reply to: "title" not showing page on custom front pageHi Rebecca
Sure, here is what is in my header.php file that is pulling the code.[code]
<title>
<?php
if (function_exists('is_tag') && is_tag()) {
single_tag_title("Tag Archive for ""); echo '" - '; }
elseif (is_archive()) {
wp_title(''); echo ' Archive - '; }
elseif (is_search()) {
echo 'Search for "'.wp_specialchars($s).'" - '; }
elseif (!(is_404()) && (is_single()) || (is_page())) {
wp_title(''); echo ' - '; }
elseif (is_404()) {
echo 'Not Found - '; }
if (is_home()) {
bloginfo('name'); echo ' - '; bloginfo('description'); }
else {
bloginfo('name'); }
if ($paged>1) {
echo ' - page '. $paged; }
?>
</title>
[/code]Thanks
Forum: Installing WordPress
In reply to: migration issueThanks t-p
Already, deleted my ht doc and db – re-downloaded, followed and failed
??