.
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Space between slider and contentSo you just want the space and the content there gone? If so, then this should work:
#calltoaction { display:none; }Update:
Please replace that html overflow-x hidden code with this:
@media screen and (min-width: 783px) { .primary-navigation a { white-space: normal; } }There appear to be some conflict going on with the .primary-navigation’s float:right and .primary-navigation a’s white-space:nowrap.
Your issue is resolved when we either
— replace the .primary-navgiation float:right with text-align:right (in terms of child theme CSS, it would be float:none then text-align:right),
— or if we set the .primary-navigation a white-space to white-space:normal (the default of the theme is white-space:nowrap)I cannot reproduce the problem on my local installation for the life of me; so I don’t think that it’s a problem with the theme. Is there anything among your customization or plugins that might have caused this weird bug?
Forum: Themes and Templates
In reply to: [Tonal] reduce the space between the title and paragraphPlease put this at the bottom of your child theme’s style.css or custom CSS:
.fullwidth-block { padding-bottom: 10px; /* space between title and paragraph */ }Increase or decrease the number as needed.
A temporary solution would be to hide the horizontal scroll:
html { overflow-x: hidden; /* hide x-coordinate (horizontal) scroll */ }When I get home from work, I’ll look more into this to see whether it’s a problem with the theme itself or your setup. I can’t really look deep into this now at work, sorry.
I’m not able to replicate teh problem on my end. Could you link us to a page where the issue is present?
Forum: Themes and Templates
In reply to: [Virtue] Search in topbar is invisibleIf you aren’t using a child theme, you can go to Appearance –> Theme Options –> Advanced Settings –> copy-paste the code into the custom CSS box of Virtue.
#topbar-search input[type="text"] { background: #D9D9D9; /* top bar search background color */ color: #181818; /* top bar search font color */ }Change the colors as needed. You can use http://colorpicker.com/ to grab the color codes.
Could you please provide us a link to the site? Actually see the problem would make it easier to attempt some solutions.
Forum: Themes and Templates
In reply to: [Virtue] Font and Icon size TopbarThis didn’t help!
The code works for the link text. If it didn’t work on your end, that means there’s some error with how you’re applying the code. Please check your method.
In the topbar, we have to language icons
I’m basing my code on what I see on the official demo, which is here: http://themes.kadencethemes.com/virtue/
I’m sorry but if I don’t see it, I can’t provide help with it. YOu’ll need to let me see a site where the language icons are there.
and a search bar,
#topbar-search input[type="text"] { height: 36px; /* search area height */ } .form-search .search-icon { font-size: 20px; /* search icon size */ } .form-search .search-query { font-size: 24px; /* search text font size */ }change the sizes as needed.
Also, here’s a screenshot to show the codes at work, when apply properly: http://i.imgur.com/BDYRn4P.png
Forum: Themes and Templates
In reply to: [Baskerville] Tagline font color.blog-description { color: #fefefe; /* blog description font color */ }You can find the codes for the colors here: http://colorpicker.com/
Forum: Themes and Templates
In reply to: [Arcade Basic] Blog Page linkBased on the demo site from their official site, they are using a static front page for Home. They’re utilizing Post Block page template.
screenshot: http://i.imgur.com/mw0xYec.png
Beyond Post Block is outside the theme’s capability, I afraid.
Forum: Themes and Templates
In reply to: [Arcade Basic] Blog Page linkBut I want a link in the top Nav to all blog posts, as most sites have.
Then that setting is the correct one. I don’t understand where the issue is.
– Create a blank page call Blog,
– go to Settings –> Reading –> set the Post Page to Blog,
– Save settings– Go to Appearance –> Menus
– Add the link to the top-nav menus,
– Save menus, done.Per your suggestion, I tried setting the Posts page to my created Blog page in the Reading settings, then setting it back to Show Blog Posts (rather than static front page), to see if that would connect the dots, but still no go.
I don’t understand why you set it back. What are you trying to achieve anyway?
I thought you want to have
– a page name “Blog” that show all blog posts,
– that you could link to it in the top navigation.This is exactly what the settings in my screenshot does.
Forum: Themes and Templates
In reply to: [Virtue] Font and Icon size TopbarGo to Appearance –> Theme Options –> Advanced Settings –> copy-paste this into the custom CSS box there:
.topbarmenu ul li a { font-size: 14px; /* topbar menu font size */ }increase the font size as needed. And I have no idea what icons you’re talking about.
Forum: Themes and Templates
In reply to: [Arcade Basic] Blog Page linkLet me make sure that I’ve understood you correctly.
– You have a front page already set up, and
– you want to have a another page with only your blog posts on it.If that’s correct, then you can define the pages in the Settings –> Reading settings
screenshot: http://i.imgur.com/ySc3goh.png
You do need to create a blank page to point the Reading settings.
After that, you can control what appears in your main navigation menu by going to Appearance –> Menus
Forum: Themes and Templates
In reply to: Sidebar appearing below page content#main-content { width: 1045px; }That should fix the issues.
But this is a concern
I downloded from some site i didn’t buy this theme.
I recommend only use themes from trusted source. You never know what people might have put into the theme; even experts have issues with encrypted codes. This is not safe to use at all.
Forum: Themes and Templates
In reply to: [Hemingway] Reducing footer sizeKeep the theme author’s .footer-inner code there; don’t remove it.
Add this to the bottom of your custom CSS:
.footer { padding-bottom: 0px !important; }