PDA

View Full Version : Text on Galleries Pages...


photobanks
Jul-10-2007, 04:53 AM
Hello,

I want to be able to put a small amount of text at the top of my galleries pages, mainly this one...

http://www.photographywithpassion.co.uk/Weddings

Can anyone advise how I can do this??

Thanks,

Michael
:scratch

Allen
Jul-10-2007, 06:50 AM
Hello,

I want to be able to put a small amount of text at the top of my galleries pages, mainly this one...

http://www.photographywithpassion.co.uk/Weddings

Can anyone advise how I can do this??

Thanks,

Michael
:scratch Add this just below your nav code in your header.

<div id="myText">This is my small amount of text</div>

Add this to your CSS.

#myText {display: none;}

.category_Weddings #myText {
display: block;
margin: 10px 0;
text-align: center;
font-family: Comic Sans MS, verdana, tahoma, helvetica, arial, sans-serif;
font-size: 120%;
color: #f78e1d;
}

photobanks
Jul-11-2007, 01:11 AM
Add this just below your nav code in your header.

<div id="myText">This is my small amount of text</div>

Add this to your CSS.

#myText {display: none;}

.category_Weddings #myText {
display: block;
margin: 10px 0;
text-align: center;
font-family: Comic Sans MS, verdana, tahoma, helvetica, arial, sans-serif;
font-size: 120%;
color: #f78e1d;
}

Al,

Thanks very much... works a treat!!

photobanks
Jul-26-2007, 10:43 AM
Al,

Thanks very much... works a treat!!


Just one thing I have noticed... I only want this to appear on the main gallery page... www.photographywithpassion.co.uk/weddings, but it appears on all the galleries under this page. Is there a way round this??

Thanks,

Michael

Allen
Jul-26-2007, 11:24 AM
Just one thing I have noticed... I only want this to appear on the main gallery page... www.photographywithpassion.co.uk/weddings (http://www.photographywithpassion.co.uk/weddings), but it appears on all the galleries under this page. Is there a way round this??

Thanks,

Michael
Use this in your CSS in this order, seems to work, but check a bunch of pages.

.category_Weddings #myText {
display: block !important;
margin: 10px 0;
text-align: center;
font-family: Arial;
font-size: 120%;
color: #f78e1d;
}

.galleryPage #myText,
#myText {display: none !important;
}

Don't forget to add myText to your header.