CSS for Bueno
-
Hello, I am new to CSS, this is my site http://weloveyourcat.com and I’d like to remove the following sidebar stuff:
1) Archive
2) Meta bulletsAlso I need to remove this item at the end of each post / page:
3) Categories / Uncategorized
Last, I want to make the site multilingual. Is this possible with CSS? Are CSS and Qtranslate (or other plugin) compatible?
Thank you!
Genona
The blog I need help with is: (visible only to logged in users)
-
1 & 2. Go to appearance > widgets and add whatever widgets you want in the sidebar. What you are seeing now is a default sample set displayed by the theme. Once you add even one of your own widgets, then the sample widgets disappear.
3.
.post-meta { display: none; }We cannot use plugins at wordpress.COM for security reasons. Plugins are for self-hosted wordpress sites.
I would suggest making a separate blog for each language and then you can link to them from the top navigation on each blog using a custom link in a custom menu.
-
Thank you very much for your advice @Thesacredpath, all of it worked very well.
Here is my progress so far http://catbcn.wordpress.com/
Could you please provide more info on “linking separate blogs from the top navigation on each blog using a custom link in a custom menu”?
(The link in your answer did not work…)
Gracias :)
-
Your site is looking good. Nice and clean and I like your icons in the sidebar.
When you create your custom menu, what you will do is to create a “custom link” from the custom link module on the left side. In the label field you can put whatever you desire, and then in the “link” field, put the URL to the other blog. You can do that on each site so that there is a way to get around and back from all of them. The one thing that many miss is that you have to set the menu you create as the “primary” menu in the theme location module at upper left and then click save so that it will be applied to the main top menu location.
-
-
-
Hello @thesacredpath,
The custom menu is ready with the different languages linked to each other. My site is in 4 languages, which means 1+3 blogs…
Do I need to pay for the CSS upgrade for the 3 new blogs if I want them to look like the original one, or do I have another solution?
-
Yes, the Custom Design Upgrade is per blog, so you would have to buy it for each blog in order to have them look the same.
-
ok! so I think all my questions are solved, we may close the topic.
i’m really grateful for your help :-) -
You are welcome and you can mark it as “resolved” on the pulldown at upper right on this page.
-
Hi,
sorry to bother you but I am totally new at this…
I am using BUENO but I would like the title not to be all in capital letters, but only have the first letter of each word capital and the rest small.I have bought the upgrade but have no idea how to change the code…can anyone help me?
-
You can use the text-transform property in CSS to change case. The capitalize option will change the first letter of each word to a capital letter and the rest lowercase. So, to do that for the main site title, you would add this CSS to your Appearance → Custom Design → CSS:
.site-title { text-transform: capitalize; }
- The topic ‘CSS for Bueno’ is closed to new replies.