1. Big Slide – can the headlines over the images be in Sentence Case not all in full capitals?
2. Headline weight – Can these be made bold (I am using Arimo webfont so I’d like ‘Bold 700’)
3. Headline links: – Can the headlines show that they are links without hover? (eg same behaviour as http://www.bbc.co.uk/news/.
4. Sidebar widget text links: I posted text there and the links don’t show they are links until hover – can links there behave like other links ? (eg link colour)
5. Is it possible to move the tags from the bottom of a post to the top? sit below categories?
Thanks
Thanks
Hi,
1. Add this CSS in Theme panel -> Custom CSS
.td-sbig-title-wrap a {
text-transform: none;
}
If you want with capitalize use text-transform: capitalize; instead of text-transform: none;
2. Do you mean about titles from big slider? Use this:
.td-sbig-title-wrap a {
font-weight: 700;
}
3. The titles are underline on hover like as http://www.bbc.co.uk/news/ I don;t understand your question. Can you be more specific please?
4. Use this and change in the color you want:
.widget_text a {
color: #4DB2EC;
}
5. Here is the file where you have to edit, move the code for tags above
http://screencast.com/t/tegvPEiovssK
Thanks!
Thanks! – what I was meaning with the headlines:
1. Can all headlines be in bold throughout the site not just the Big Slide? (font-weight: 700)
2. Can these headlines be in the link colour already (like BBC News site) and also underline as they do currently. I understand you wouldn’t do this on the actual post page, just when it needs to link to the full post page.
thanks again.
Hi,
1. Do you mean about this? http://screencast.com/t/03cMQbydJ to be bold?
Use this:
.block-title a, .block-title span, .block-title label {
font-weight: 700;
}
2. Please show me a screenshot with what you want, sorry but i don’t understand your question here.
Thanks!
Thanks – this is what I mean: http://www.screencast.com/t/08bkttdCzpb
One other thing marked on the screenshot, there is a slight alignment difference on the Big Slider title/date captions in case you can fix this – or perhaps intentional.
Great support.
You can change it from CSS, but this is for some blocks, you have to change only from that you use in your case.
.td_mod2 .entry-title a,
.td_mod2 .entry-title,
.td_mod3 .entry-title,
.td_mod3 .entry-title a,
.td_mod5 .entry-title a,
.td_mod5 .entry-title,
.td_mod6 .entry-title,
.td_mod6 .entry-title a
{
font-weight: bold;
color: #4DB2EC !important;
}
You have changed the content font size, line-height? Can be fixed via CSS but should be fixed only for your case. Give me a link to see the issue.
Thanks!
-
This reply was modified 12 years by
Marius.
Thanks Marius – perfect! Please can I also ask:
1. Can this bold/link colour effect also be applied headlines of listings on Category pages ?
2. Can the headline on a post page be made bold ?
3. If the date/category captions top left of Big Slide cannot be 100% aligned can the date be removed so only category shows?
Thanks!
Hi,
1. Yes, as you can see in the CSS above is only for some modules, depends of which module you use on category, because the theme have 11 modules available.
You can inspect it with Firebug from Firefox or Chrome inspector to see what selector you have there. Do you have some CSS experience? What Module do you use for categories?
Use the same CSS provided above and chenge it for different module like .td_mod8 or .td_mod 9 or…etc
2. Use this CSS
.post header h1 {
font-weight: bold;
}
3. That data can be aligned via CSS is from a line-height, if you give me a link to see the issue i will provide you the right CSS.
Thanks!
Hi,
My website: http://tecnomipyme.com/
1. I’m trying to change the big slider color font but i can’t do it. I tried with the following code adding it to the custom css:
.td-sbig-title-wrap a {
color: #000000;
}
2. I want to change to color font to the small slider.
3. How can I change the category color font for both big and small sliders?
4. How can I change the tittle color font for the bottom tag widget (MÁS CONTENIDOS)?
5. How can I change the bottom tag widget size for aligning it with the other widgets?
Thanks a lot.
Hi,
To change the big slider and normal slider color font use this css:
.iosSlider .td-sbig-title-wrap a, .iosSlider .td-sbig-title-wrap span {
color: red !important;
}
To change the mete info/category color use this css:
.iosSlider .slide-meta a, .iosSlider .slide-meta span {
color: red !important;
}
If you don’t want to change the date color also, remove the .iosSlider .slide-meta span
For the tag widget use this:
.widget_tag_cloud .block-title span {
color: red !important;
}
The size of the tag widget is determined by the amount of tag displayed there, so you can’t re-size it only if you reduce the size of the tag container. Use this css to do that:
.widget_tag_cloud .tagcloud a {
padding: 0px 5px 0px;
font-size: 11px !important;
}
Hope this helps!
Thanks