playts.com 更换新的主题,采用zen 2.0
每天面对自己站点,时间久了看腻了,于是就想换一个。之前playts.com的主题是采用zen 6.1.x 制作的,目前zen 2.0已经发布了有一段日子,这次制作主题当然首选zen 2.0了。
关于使用zen创建子主题的方法,可以参照zen的文档 ( http://drupal.org/node/193318 ),我之前的blog也介绍过,请看 http://playts.com/node/105 和 http://playts.com/node/105#comment-1666
zen 6.2.x 相对 zen 6.1.x 变化不小。zen 6.1.x 的tpl.php文件和css文件以及js文件全部放在主题的根目录下,而zen 6.2.x是tpl.php放在主题的根目录下的templates目录,css文件放在主题的根目录下的css目录,js文件放在主题的根目录下的js目录。
zen 6.1.x默认regions
regions[right] = right sidebar
regions[navbar] = navigation bar
regions[content_top] = content top
regions[content_bottom] = content bottom
regions[header] = header
regions[footer] = footer
regions[closure_region] = closure
zen 6.2.x默认regions
regions[sidebar_second] = Second sidebar
regions[navigation] = Navigation bar
regions[highlight] = Highlighted content
regions[content_top] = Content top
regions[content_bottom] = Content bottom
regions[header] = Header
regions[footer] = Footer
regions[page_closure] = Page closure
相对 zen 6.1.x 其实zen 6.2.x只是新增了regions[highlight] = Highlighted content ,其他的是换汤不换药,改了名字而已。
在我第一次使用zen 6.2.x 看到css目录下竟然有31个css文件,一下子蒙了。经过研究发现css文件在zen 6.2.x 中被分割的更清晰了,可以根据需要加载css文件。
我的做法是编辑.info文件,我的站点也没有安装cck、views、panels等模块,那么我可以将这些css文件注释掉。
zen 6.2.0 默认的设置
stylesheets[all][] = css/wireframes.css
stylesheets[all][] = css/layout-fixed.css
stylesheets[all][] = css/page-backgrounds.css
stylesheets[all][] = css/tabs.css
stylesheets[all][] = css/messages.css
stylesheets[all][] = css/pages.css
stylesheets[all][] = css/block-editing.css
stylesheets[all][] = css/blocks.css
stylesheets[all][] = css/navigation.css
stylesheets[all][] = css/panels-styles.css
stylesheets[all][] = css/views-styles.css
stylesheets[all][] = css/nodes.css
stylesheets[all][] = css/comments.css
stylesheets[all][] = css/forms.css
stylesheets[all][] = css/fields.css
stylesheets[print][] = css/print.css
; stylesheets[handheld][] = css/mobile.css
; stylesheets[only screen and (max-device-width: 480px)][] = css/iphone.css
; Set the conditional stylesheets that are processed by IE.
conditional-stylesheets[if IE][all][] = css/ie.css
conditional-stylesheets[if lte IE 6][all][] = css/ie6.css
先修改为:
stylesheets[all][] = css/wireframes.css
stylesheets[all][] = css/layout-fixed.css
stylesheets[all][] = css/page-backgrounds.css
stylesheets[all][] = css/tabs.css
stylesheets[all][] = css/messages.css
stylesheets[all][] = css/pages.css
stylesheets[all][] = css/block-editing.css
stylesheets[all][] = css/blocks.css
stylesheets[all][] = css/navigation.css
;stylesheets[all][] = css/panels-styles.css
;stylesheets[all][] = css/views-styles.css
stylesheets[all][] = css/nodes.css
stylesheets[all][] = css/comments.css
stylesheets[all][] = css/forms.css
;stylesheets[all][] = css/fields.css
stylesheets[all][] = css/style.css
stylesheets[print][] = css/print.css
; stylesheets[handheld][] = css/mobile.css
; stylesheets[only screen and (max-device-width: 480px)][] = css/iphone.css
; Set the conditional stylesheets that are processed by IE.
conditional-stylesheets[if IE][all][] = css/ie.css
conditional-stylesheets[if lte IE 6][all][] = css/ie6.css
如果你仔细比较,可以看出我把这3行注释掉了
;stylesheets[all][] = css/views-styles.css
;stylesheets[all][] = css/fields.css
并且新增了一行
stylesheets[all][] = css/style.css
把所有需要新增的或复写的css代码全部放在style.css中。为什么这样做?我来说明一下我的思路:
在zen 6.2.0中,你可以看到有blocks.css、nodes.css ...等等,在前期调试中需要频繁编辑css文件, 我把所有需要新增的或复写的css代码全部放在style.css中,不需要来回编辑其他css文件,还能保证zen基础的样式表的完整性,我可以清楚的知道自己复写了那些样式,新增了那些样式。特别是在调试中遇到难题,我需要找出问题出在什么地方,这时我只需复查style.css就可以了。
欢迎大家留言讨论,相互学习!
评论
谢谢更新,也让我们新手多了一种体验方式
谢谢更新,也让我们新手多了一种体验方式。反正现在我在宽屏下看这个主题很完全,简洁,美观。要的就是简洁,美观。呵。
题外话,Drupal 7出来,我还站在6门外,汗。
多谢你的鼓励和夸奖!我也喜欢简洁、朴素的风格。我最怕做图了
多谢你的鼓励和夸奖!我也喜欢简洁、朴素的风格。我最怕做图了,所以我做出来的主题,很少使用到图片,呵呵~
虽然drupal 7 出来了,但是多数站长都在等待、观望、体验,学习中,不必着急。
很漂亮
蛮不错啊。偶现在没有更换主题。
PS:怎么应用标签类别?即不同的文章类别等。
还有我怎么上传不了图片,是不是少了什么插件了?!~
首先确认你是否开启了“Taxonomy”和“Upload”
首先确认你是否开启了“Taxonomy”和“Upload”这2个模块
然后转到 “管理 › 内容管理 › 分类” URL是:admin/content/taxonomy
点击“添加词汇表"
术语表名称:例如 标签
内容类型: 例如选中 blog 和 Story
设置:例如选择 标签
保存后,试试添加一篇内容类型为 blog 或 Story 文章,就能看到。
开启“Upload”模块后,编辑一个内容类型,例如blog URL为:admin/content/node-type/blog
点击“流程设定”选项
确认 附件 被选中,保存即可。
记得为用户组附件的设置权限 ,URL为:admin/user/permissions
建议你在本机安装一个调试环境,多熟悉一下,搞清楚后再在正式网站上操作。
ZEN主题N多人喜欢,偶还是找不着头绪。一直想更换一下主题
ZEN主题N多人喜欢,偶还是找不着头绪。一直想更换一下主题。
zen主题很好用的,将下载回来的zen压缩文件解压到/si
zen主题很好用的,将下载回来的zen压缩文件解压到/sites/all/themes
复制/sites/all/themes/zen/STARTERKIT 目录到/sites/all/themes/STARTERKIT
然后将/sites/all/themes/STARTERKIT 目录重命名,例如/sites/all/themes/test
重命名 /sites/all/themes/test/STARTERKIT.info.txt 为 /sites/all/themes/test/test.info
编辑/sites/all/themes/test/目录下
template.php 和 theme-settings.php
搜索STARTERKIT 替换为 test 保存
编辑/sites/all/themes/test/test.info
将
name = Zen Sub-theme Starter Kit
替换为:
name = test
根据需要加载css,不需要加载的就在前面加个";"
如果不想显示左栏,找到:
regions[sidebar_first] = First sidebar
替换为:
;regions[sidebar_first] = First sidebar
到后台启用主题test就可以了
如果想改动模板就去/sites/all/themes/zen/templates,将需要的模板复制到/sites/all/themes/test/templates
清空缓存,使模板生效,想怎么改看你需要了,剩下的事就是编辑css样式表了
RE
谢谢。
偶现在只是为了应用目前而不是想把精力放在这上面,嘎嘎。
谢谢你的讲解,收藏。
咨询下
这个网址模板感觉怎么样,http://www.antsin.com/demo/blogbuzzII/似乎蛮不错的样子。你知道需要那些模块吗。呵呵。
Dynamic display block
Dynamic display block 模块,看: http://drupal.org/project/ddblock
re
楼主,能加我Q不,请教请教,我打算在应用那个主题。
104384312
不喜欢QQ ,尤其我现在使用ubuntu
不喜欢QQ ,尤其我现在使用ubuntu ,你加我gtalk吧 playts(#)gmail.com 请替换(#)到@
哈,好久没来逛逛了。 我现在也是在重新弄弄中。。。
哈,好久没来逛逛了。
我现在也是在重新弄弄中。。。
我晕 这么多css 得看多久啊
我晕 这么多css 得看多久啊
air max shoes
Nike air max as a air max shoes will be at this weekend,Nike air max 90 will be issued a special all-star outfit agree with this weekend celebration. In the nike air max 247 black red/white make full use of the air Max unit soles,air max 91 provide players with the type of buffer they need. This reminds us of the women air max ltd and women air max 95.despite low cut style soon end any more. Other nike air max 2009 including a taste in the Flywire, a little transfer the side plates derrick rose shoes. Another good color release is the nike air max 2011 series at http://www.nikediscountsairmax247.net/.
lebron james shoes
2012 years is a new page nike lebron james NBA history, a new dynasty, a new heritage, http://www.derrickroseforsale.com/ have one of the most respected AdiZero Crazy Light 9.8 combination forever. In the summer of 2012, Nike Air Max Lebron 9 announced that he will leave Cleveland team to join wade and Chris bosh Miami. Pat riley and the rest of the Miami heat President was persuaded Nike Air Max Lebron 8, all the way to Miami to pursue an NBA championship. After careful James announced that he will stay in ESPN become a member of the heat. Mark lebron James arrival to Nike released hot a very special Nike Lebron 8 V2 preheating version. Lebron style and off by play, Nike Lebron 8 PS basketball shoes is the latest incarnation in a signature lineup-brought to life with every detail. From plane expression, James pursuit title innovative outsole designed specifically for his explosive game, Nike Zoom Kobe VII is the evolution of the basketball shoes more than light, stronger, complete technology, you need to use Tracy McGrady Shoes to your best game.
coper tattoo machine
Set a goal for this project is to make the Tattoo Machine run began a spray gun compressor. I think that Tattoo Needles may be credible.I'm working part design modification for testing Tattoo Inks. I'm also thinking of adding another Tattoo anesthetic and Tattoo Kit patent characteristics, Power Supply will add less friction, make the Tattoo Books machine. That will make Laser wash tattoo machine even run more smoothly. Today we can release the Tattoo hall adornment machine have the upgrades?I want to make sure the machine is perfect. I apologize to those you waiting patiently for the release of it. But I would rather wait and then release a machine at http://www.tattoocheap.com/.
The kind of elegantly very
The kind of elegantly very simple ring earrings coach outletare usually alarm by a contrasting music group associated with expensive diamonds at white-colored antique watches. coach online outlet. Your hoops are usually priced at It will not any uncomplicated choice, Post suppose. coach factory outletThe particular fat that the lady carries on your girlfriend shoulder blades considering the bag at depends on the volume of things which the lady will call up needs. coach outlet onlineThat all the list needs might fluctuate through a single lady in order to another but there are particular coach factory outlet storeelements which could continue being a similar for everyone. Women of all ages would certainly typically transport mobile phones within their totes. The bodyweight coach online storefrom the cellular phone would are different based on the kind of the actual model you've got. Though, it probably should not be adding that much seeing that women of all ages much like the light weight thin handsets as compared to this large as coach outlet store well as heavy kinds. Subsequently, your lady would definitely have a very compact mirror tote inside the handbag.
http://www.coachonlineii.com
In counterfeit piece presented that louis vuitton outlet you’re managing identified firms who sadly are much more impacted by their own reputations in comparison with a man or woman could be. The 2 main hunting search engine listings i always highly recommend by far the most will be Froogle not to mention Shopzilla. These types of will be remarkably useful, include awesome choices, and therefore are louis vuitton outlet store online user friendly. Any time Now i am investing in Xmas product, including, and do not desire to consider the chance while on an piece simply being counterfeit or simply in awful state in that case I’ll desire to go to Froogle not to mention Shopzilla not to mention participate in a browse placing your order my personal consequences by means of most competitive price tag first of all. A few notable shops which perform function almost like hunting browse will be Amazon online, Smartbargains not to mention Overstock. Many are likewise value finding out about. Any time Now i am solely looking for various knowledge of a minimal price tag i always will have to pay money for anything,
it will get a substantive change. Some other tactic to the clearance deal will be seek material on the internet for excellent not online offers. louis vuitton factory outlet Types of website pages on the internet which routinely write-up because a warehouse deal should manifest. The warehouse deal generally will be because a warehouse closes creating louis vuitton outlets products for being liquidated. This could bring on the once-in-a-lifetime wish discounts pertaining to superior brandnames which you believe want Xmas has arrived. louis vuitton outlet online Most women prefer to carry almost everything they can on the designer louis vuitton factory outlet online handbag which usually comes with these people everywhere you go. louis vuitton outlet store In times that adheres to that nice to read a compact motorola clutch would express a few women. Nicely, louis vuitton online store before an online business place to review which, the point that becoming an excellent personal preference to have mountain climbing you can decide better louis vuitton shop what exactly you intend to genuinely have to you each day. louis vuitton onlie outlet Lugging the arm string motorola clutch for instance the Louis Vuitton Monogram
http://www.louisvuittononline100.com
International brand to
International brand to emerging coach purses outlet markets as the main theme. European and American brands in an effort to seek development coach handbags outlet in emerging markets, Italy's Prada and United States coach followed by the Hong Kong cheap coach purses Exchange is typical. Despite Japan effects of the earthquake and tsunami, by Mercedes-Benz's name coach purses for sale is Japan fashion week brought a new atmosphere, and equally fast pace of fashion week.
The other hand, international coach factory store brands on the culture occupied the commanding heights for everyone to see. Unprecedented coach outlet stores luxury market coach factory outlet showing strong growth. Many international luxury brands in the top Museum exhibition, through cheap coach active showing its long cultural tradition and to deepen interaction with consumers.
Reporter seen on the COACH's coach outlet online online shop, on the shop mainly sells merchandise to handbags, cover accessories, jackets, watches, coach factory online jewelry and coach factory online store other products. COACH also went out for special offers up to 50 Taobao Taobao shop, coach for sale selling only on Taobao Mall.
Taobao Mall cooperation coach factory outlet and for the, COACH, President and CEO, Jonathan Seliger, the store will help COACH understand the needs coach factory online and preferences of domestic online shopping customer and accumulated experience in coach online store the field of coach factory outlet online e-commerce, for future market opening in prepare long-term COACH online sales channels.
International brand to
International brand to emerging coach purses outlet markets as the main theme. European and American brands in an effort to seek development coach handbags outlet in emerging markets, Italy's Prada and United States coach followed by the Hong Kong cheap coach purses Exchange is typical. Despite Japan effects of the earthquake and tsunami, by Mercedes-Benz's name coach purses for sale is Japan fashion week brought a new atmosphere, and equally fast pace of fashion week.
The other hand, international coach factory store brands on the culture occupied the commanding heights for everyone to see. Unprecedented coach outlet stores luxury market coach factory outlet showing strong growth. Many international luxury brands in the top Museum exhibition, through cheap coach active showing its long cultural tradition and to deepen interaction with consumers.
Reporter seen on the COACH's coach outlet online online shop, on the shop mainly sells merchandise to handbags, cover accessories, jackets, watches, coach factory online jewelry and coach factory online store other products. COACH also went out for special offers up to 50 Taobao Taobao shop, coach for sale selling only on Taobao Mall.
Taobao Mall cooperation coach factory outlet and for the, COACH, President and CEO, Jonathan Seliger, the store will help COACH understand the needs coach factory online and preferences of domestic online shopping customer and accumulated experience in coach online store the field of coach factory outlet online e-commerce, for future market opening in prepare long-term COACH online sales channels.
发表新评论