PDA

View Full Version : Words above galleries/catagories


impressivepix
Mar-18-2011, 10:40 AM
I was wondering if it is possible on my galleries page to do a Welcome to my page couple of paragraph thing.. www.kimberlygaugerphotography.com (http://www.kimberlygaugerphotography.com)

I am wanting to welcome people to my new page and write a couple of paragraphs. I want it above all of my photo catagories, like a bio, but I am using my bio for my slideshow :)

Thanks!!
Kim

impressivepix
Mar-18-2011, 11:26 AM
I want to clarify, I just want it above the page www.kimberlygaugerphotography.com/galleries (http://www.kimberlygaugerphotography.com/galleries) not every gallery and catagory.

impressivepix
Apr-04-2011, 10:13 AM
Can someone tell me if this is even possible??

jfriend
Apr-04-2011, 10:35 AM
Some stuff to clean up first.

1) Remove this from your CSS. It's not CSS, is causing errors and doesn't belong here:

function changeCategoryInfo()
{
re = /^([0-9]+ )(galler(y|ies))/;

divTag1 = document.getElementById("categoriesBox");
divTag2 = document.getElementById("subcategoriesBox");
if ((divTag1)|| (divTag2))
{
if (divTag1)
divTags = divTag1.getElementsByTagName("div");
else
divTags = divTag2.getElementsByTagName("div");

for (i=0; i<divTags.length; i++)
{
if (divTags[i].className == "miniBox")
{
pTags = divTags[i].getElementsByTagName("p");
re.exec(pTags[1].innerHTML);
pTags[1].innerHTML = RegExp.$1 + RegExp.$2;
}
}
}
}

2) Remove this from your CSS:

.galleries #bioBox {
display: none;
}

3) Move your biobox above your gallery listing on your homepage. You can hopefully do this with a "Move Up" link on the homepage or galleries page.

4) Add this HTML right after your bioText, but before the slideshow in your bio and put whatever text or HTML you want in it for the gallery title:

<div id="bioGalleryTitle">This is a gallery Title</div>

5) Add this CSS to hide the slideshow on the galleries page, but leave the title showing:

.galleries #userBio object {display: none;}

impressivepix
Apr-05-2011, 03:27 AM
Some stuff to clean up first.

1) Remove this from your CSS. It's not CSS, is causing errors and doesn't belong here:

function changeCategoryInfo()
{
re = /^([0-9]+ )(galler(y|ies))/;

divTag1 = document.getElementById("categoriesBox");
divTag2 = document.getElementById("subcategoriesBox");
if ((divTag1)|| (divTag2))
{
if (divTag1)
divTags = divTag1.getElementsByTagName("div");
else
divTags = divTag2.getElementsByTagName("div");

for (i=0; i<divTags.length; i++)
{
if (divTags[i].className == "miniBox")
{
pTags = divTags[i].getElementsByTagName("p");
re.exec(pTags[1].innerHTML);
pTags[1].innerHTML = RegExp.$1 + RegExp.$2;
}
}
}
}

2) Remove this from your CSS:

.galleries #bioBox {
display: none;
}

3) Move your biobox above your gallery listing on your homepage. You can hopefully do this with a "Move Up" link on the homepage or galleries page.

4) Add this HTML right after your bioText, but before the slideshow in your bio and put whatever text or HTML you want in it for the gallery title:

<div id="bioGalleryTitle">This is a gallery Title</div>

5) Add this CSS to hide the slideshow on the galleries page, but leave the title showing:

.galleries #userBio object {display: none;}


Thanks John..
Now is there a way to hide the bio text on the home page? Where it will just show on the galleries page? :)

Thanks again! You are awesome:barb

impressivepix
Apr-05-2011, 03:58 AM
Thanks John..
Now is there a way to hide the bio text on the home page? Where it will just show on the galleries page? :)

Thanks again! You are awesome:barb

You are awesome, but after doing everything you told me to, the slideshow is now playing on my galleries page. What did I do wrong???

jfriend
Apr-05-2011, 07:06 AM
You are awesome, but after doing everything you told me to, the slideshow is now playing on my galleries page. What did I do wrong???What browser are you seeing that in? I'm not seeing the slideshow on the galleries page in FF, IE or Safari.

impressivepix
Apr-05-2011, 11:12 AM
What browser are you seeing that in? I'm not seeing the slideshow on the galleries page in FF, IE or Safari.


It was showing in AOL, now I have gone to FF and it isn't showing. Thanks so much for your help!!

Can you help me with font color and font? I can look up color codes and such, but how do I code it so it will work?

Thanks again for taking time out of your day to help me!

Kim:thumb

impressivepix
Apr-05-2011, 12:27 PM
I like that because now I can add special messages about specials and such here. BUT is there a way to hide it from the home page? That way it doesn't show above the slideshow?

jfriend
Apr-05-2011, 12:33 PM
It was showing in AOL, now I have gone to FF and it isn't showing. Thanks so much for your help!!

Can you help me with font color and font? I can look up color codes and such, but how do I code it so it will work?

Thanks again for taking time out of your day to help me!

Kim:thumbFont and color of what? Please be specific.

Also, please add a link to your site to your dgrin signature so we don't have to go hunting back earlier in the thread to try to find it.

impressivepix
Apr-06-2011, 08:00 AM
Font and color of what? Please be specific.

Also, please add a link to your site to your dgrin signature so we don't have to go hunting back earlier in the thread to try to find it.


Sorry John, fixed the link in the siggy. Like I said I changed everything. I would have gotten a new dgrin, but I can't change it because I used my email addy for the other name.

I would like to change the font and color of the wording above my galleries
the wording that I just put in. Like instead of the basic font, I would like it a little bigger and a different type than everything else. And maybe change the color up with seasons, or depending on how important the message is. I would also like to remove it from above my slideshow. Is there a code that I can put in to do that?

Thanks for all of your help.
Kim

jfriend
Apr-06-2011, 08:18 AM
Sorry John, fixed the link in the siggy. Like I said I changed everything. I would have gotten a new dgrin, but I can't change it because I used my email addy for the other name.

I would like to change the font and color of the wording above my galleries
the wording that I just put in. Like instead of the basic font, I would like it a little bigger and a different type than everything else. And maybe change the color up with seasons, or depending on how important the message is. I would also like to remove it from above my slideshow. Is there a code that I can put in to do that?

Thanks for all of your help.
KimYou can add this CSS to control font, font size, and text color.

/* format gallery page title */
#bioGalleryTitle {
font-family: Segoe Print, Arial;
font-size: 24px;
color: #FF0000;
}

Add this CSS to make it only display on your galleries page:

/* make gallery title only appear on galleries page */
#bioGalleryTitle {display: none;}
.galleries #bioGalleryTitle {display: block;}

impressivepix
Apr-06-2011, 09:19 AM
:lust Showing you big love.. Thanks so much for your help ! :)

How hard are Nav bars? I like the one I have from easy customizer, but I would like to have the tab under investments dropdown. It is easy cut and paste filling in gallery numbers and the such?

Again thank you! You made this site do what I could not get the last one to do!! :) :lust

jfriend
Apr-06-2011, 09:22 AM
:lust Showing you big love.. Thanks so much for your help ! :)

How hard are Nav bars? I like the one I have from easy customizer, but I would like to have the tab under investments dropdown. It is easy cut and paste filling in gallery numbers and the such?

Again thank you! You made this site do what I could not get the last one to do!! :) :lustA navbar with drop-downs would have to be totally custom - can't use ez customizer for that. There is a tutorial here (http://www.dgrin.com/showthread.php?t=168571) and that's where you'd get help with it.

impressivepix
Apr-06-2011, 09:26 AM
A navbar with drop-downs would have to be totally custom - can't use ez customizer for that. There is a tutorial here (http://www.dgrin.com/showthread.php?t=168571) and that's where you'd get help with it.
Thank you! :)