Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Header configuration & styling (http://forum.bytesforall.com/forumdisplay.php?f=15)
-   -   [SOLVED] Keep rotating Header Image on Home Page and Different header image on each p (http://forum.bytesforall.com/showthread.php?t=5802)

clausont Feb 9, 2010 04:39 PM

[SOLVED] Keep rotating Header Image on Home Page and Different header image on each p
 
Not sure if I should have started a new thread on this or put this in the other thread.
I want to keep the rotating header images in the home page but use a different static image for each page after that. Does Dynamic Headers do this? If not, is there a way to do this?
Thanks,

Tim

kesbo Mar 10, 2010 03:00 PM

Hi Tim, I'm wanting to do the same thing and wondered if you got this resolved? I have been able to show the dynamic header on each page but instead of replacing Atahualpa's heading I end up with two headings, any ideas?:o

juggledad Mar 11, 2010 05:34 AM

here is what you need to do.
1) create a folder in 'wordpress/wp-content' called 'hdr_images' (actually you can call it what ever you want)
2) find the PAGE ID for each page (go to dashboard->pages->edit and edit a page in question. Look at the browser's address bar, you will see something like
HTML Code:

http://yourdomain.com/wordpress/wp-admin/page.php?action=edit&post=2
the number at the end is the PAGE ID
3) add a CSS insert for each page. The format will be like this
HTML Code:

body.page-id-2 div#imagecontainer {
background-image: url('http://yourdomain.com/wordpress/wp-content/hdr_images/page_2.jpg') !important;
}

create a CSS insert for each page you want a single image to show up on.

kesbo Mar 14, 2010 10:31 PM

Hi Juggledad, thanks for your reply. I tried what you suggested but it didn't make any difference. for now I have just disabled the Atahualpa rotating header and made every page static with their own header. However, if I could figure it out I would like to be able to have the home page with the rotating header but can't seem to find my answer reading through the other threads.

juggledad Mar 15, 2010 06:41 AM

kesbo, this should work, I tested it before I posted.
What version of Atahualpa and wp?
What is your url?
Please put it back in and I'll take a look

kesbo Mar 17, 2010 01:04 AM

I am using Atahualpa version 3.4.5 and Wordpress 2.9.2 my URL is www.homesinharmony.co.nz. thank you very much for your help, Kesbo

juggledad Mar 17, 2010 04:33 AM

Hi, it doesn't look like you put the CSS back in or even have %image as part of the header configuration.

Without the rotating header set yup, and the CSS inserted, there is nothing I can look or do to help you.

alleyoopster Jan 6, 2011 08:10 AM

Hi,
I am also looking to have rotating images ONLY on the home page. I tried using the CSS insert for something other than the home page, but it just adds another image underneath the rotating image.

For this to be effective the Home page needs to keep the existing rotation and the other pages need to be customizable (no image or custom image).

Sorry to post in an old thread, but it seems to still be relevant. I couldn't find a solution elsewhere.

Daniel

juggledad Jan 6, 2011 08:12 AM

need more info

alleyoopster Jan 6, 2011 10:55 AM

Hi juggledad,

From what I understand the solution you provided post #3 will put a single header image on a page, but it will not disable the original rotating header image.

What I was looking for was a way to have the rotating header image just on the home page and maybe the option to have a single image on other pages or no image at all.

thanks

Daniel

sober Jan 17, 2011 09:05 AM

Does the image ha to be on the same domain or is it okay to be located anywhere as long as the full url path is provided

alleyoopster Jan 17, 2011 08:04 PM

Quote:

Originally Posted by sober (Post 55013)
Does the image ha to be on the same domain or is it okay to be located anywhere as long as the full url path is provided

This link goes some way to helping. Looking at the code it seems possible to use a full URL to an external domain instead.

With regards to my own problem of not displaying headers on all pages I found the answer. In CSS inserts as follows to disable headers on certain pages.
Code:

/* Stop Header Images displaying on certain pages */
body.page-id-5 div#imagecontainer {display: none;}
body.page-id-13 div#imagecontainer {display: none;}

EDIT: The link above led me to this one

inkan Jan 29, 2011 07:25 AM

This works like a charm! Thanks!! :)
/Inkan

vCopia Feb 2, 2011 06:07 AM

Quote:

Originally Posted by juggledad (Post 27445)
here is what you need to do.
1) create a folder in 'wordpress/wp-content' called 'hdr_images' (actually you can call it what ever you want)
2) find the PAGE ID for each page (go to dashboard->pages->edit and edit a page in question. Look at the browser's address bar, you will see something like
HTML Code:

http://yourdomain.com/wordpress/wp-admin/page.php?action=edit&post=2
the number at teh end is the PAGE ID
3) add a CSS insert for each page. The format will be like this
HTML Code:

body.page-id-2 div#imagecontainer {
background-image: url('http://yourdomain.com/wordpress/wp-content/hdr_images/page_2.jpg') !important;
}

create a CSS insert for each page you want a single image to show up on.

Is there a way to use this concept relative to a category page? I tried the above string, replacing the beginning portion as follows:

body.page-id-2 with
body.cat-id-3 (and then)
body.category-id-3

neither category version worked, but I figured there had to be a way to achieve this in a similar manner. Thoughts, and thanks.

juggledad Feb 2, 2011 07:06 AM

the format would be 'body.category-announce'

vCopia Feb 2, 2011 07:13 PM

I'm off somewhere. I tried placing each of the following strings below in the CSS insert section of my ATO, but neither changed the banner image on that category page. And, Yes - that is the correct category ID# and jpg file location. WP is install on the root of my server.

Code:

body.category-id-3 div#imagecontainer {
background-image: url('http://vcopia.com/wp-content/rainbowalerts/banner_1300w160h_rainbowalerts.jpg') !important;
}

When above didn't work I thought maybe I misunderstood your use of the word 'announce' as a "direction" to me to "announce" what the ID was, and tried it as a literal part of the string.

Code:

body.category-announce-id-3 div#imagecontainer {
background-image: url('http://vcopia.com/wp-content/rainbowalerts/banner_1300w160h_rainbowalerts.jpg') !important;
}

Thoughts?

juggledad Feb 2, 2011 07:16 PM

Sorry, i should have said "if your category name was 'announce' then it woipuld be....."

So the format is Body.category-yourcategoryname

vCopia Feb 3, 2011 11:55 AM

Success!

Much appreciation!

Jedha Feb 3, 2011 11:03 PM

Hi There,
I need some help. I want to have the rotating header (%image) on my home page only, with static header images on all other pages. I tried using the formatting juggledad gave above but it doesn't seem to work?

body.page-id-2 div#imagecontainer {
background-image: url('http://yourdomain.com/wordpress/wp-content/hdr_images/page_2.jpg') !important;
}

Nothing happens. The rotating images are still on every page with no static images.

Is there something I'm missing?

Jedha :)

juggledad Feb 4, 2011 03:13 AM

what is your url?

did you replace the 'yourdomain.com' with your domain name?

elainek Feb 5, 2011 03:21 PM

Juggledad and other friends,
Using your good advice on previous threads, I managed to substitute in my own header image for the home page. I now want to post separate headers on other pages, and I've gotten stuck after the step of creating the images folder in the right place. One of my problems is I don't know how to "insert CSS." Another is I don't know how to adapt the instructions when the urls for my pages don't end with a page number. Here's an example of a page url:

http://autismteachingstrategies.com/...38&action=edit

I'm greener at this than others on this chain, so I'm glad for any help you can provide. I'm using a mac and fetch.

many thanks.

juggledad Feb 6, 2011 04:54 AM

1) CSS inserts go in the ato->Add HTML/CSS Inserts->CSS Inserts option
2) that URL is the admin edit, it won't link, but if you look at it you can see the page I'd. In this case it is 38

elainek Feb 6, 2011 01:33 PM

As yet unsuccessful. I uploaded the image to the folder: public_html > wp-content > hdr_images ... and put this code at the top of all the code in the CSS inserts space:

HTML Code:

body.page-id-47 div#imagecontainer {background-image:url(http://autismteachingstrategies.com/wp-content/hdr_images/conversationtrainheader.jpg’)!important; }
The old header disappeared and I have white space. It's not finding the image?

juggledad Feb 7, 2011 04:47 AM

two things, put a space before the !important
2) make sure the image is in that folder and has the right permissions. if I key in
HTML Code:

http://autismteachingstrategies.com/wp-content/hdr_images/conversationtrainheader.jpg
into the address of the browser, it should show the image, it doesn't so either there is a spelling error in the url or the file does not have the correct permission. Check an image in the header folder to see what permission you need.

You can read about file permissions at wordpress.org

elainek Feb 7, 2011 10:50 AM

I had a couple errors, which your advice led me to fix, Juggledad:

1. the names of my header images had some uppercase letters, and I hadn't realized the code was case sensitive.
2. I didn't have a space before !important.

3. and this one took me a while to figure out by trial and error: The string of code didn't work when I copy/pasted it from a word doc into the CSS space. I eventually realized I had to write the string of code in a htm box and copy that into the CSS space.

Thanks for the guidance. AutismTeachingStrategies is grateful.


All times are GMT -6. The time now is 07:41 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.