1. can i change the font in tabs menu to cufon font?
2. is there any chance to make a scrollable field in tabs? i've got this in bio tab http://reelpeoplemusic.co.uk/artists/papa-records/the-layabouts/ and would like to have a scrollable field i.e. 380px high on the right with image on the left as it is there now.. that would be great..
tabs font
(6 posts) (2 voices)-
Posted 1 year ago #
-
1. you can add this to the cufon targets field: .tabs a
then the tabs will use the cufon font in the dropdown list. If you want to upload your own cufon font you do so with the cufon uploader, see this video tutorial (targeting in the uploader is slightly different, use this: custom:.tabs a). Some css adjustments is need for it to look right with cufon in the tabs though. Add this to the style.css of a child theme (use bfblank if you are not using one already):.tabs a cufon { padding-top:10px; }
.tabs a { color: #333; }2. wrap the content with a div container, like this:
<div class="scrollcontainer">content</div>and style it like this:
.scrollcontainer { height: 250px; overflow: auto; }Posted 1 year ago # -
brilliant. all works!! thanks!!
ps. do you know why there's no thubnails in this photo gallery? they were there before but not appearing anymore.. just one. i've deactivated nextgen and activated again, but didn't help. might it be bause that's in tabs?
Posted 1 year ago # -
is there any way to control the height of each individual scrollcontainer? i'd actually like to have to different lenghts of scrollcontainer: longer on pages, shorter in tabs..
thanks!!
Posted 1 year ago # -
change the classname in the div and css, like this:
<div class="scrollcontainer2">content</div>and style it like this:
.scrollcontainer2 { height: 350px; overflow: auto; }Posted 1 year ago # -
perfect!! thanks
Posted 1 year ago #
Reply
You must log in to post.