vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tora] Full page width & remove bordersHi,
There’s a full width page template you can use. You can select it from Page Attributes.
For the borders you’ll need to install a custom CSS plugin and add this:.hentry {border: 0;}Forum: Themes and Templates
In reply to: [Tora] Dark main photoHi,
Sorry for the delay. You can add this in a custom CSS plugin:
.header-image::after { background-color: transparent; }Forum: Themes and Templates
In reply to: [Tora] Header issueHi,
If newly created pages are appearing automatically in your menu then it means that you haven’t actually created and assigned a menu and you’re just using the fallback. So you might want to save and assign your menu first (nothing theme specific here).
Then if you want to add custom links you’ll see a Custom Links tab when you visit Appearance > Menus. Again, not something theme specific as it is a WP feature.
Forum: Themes and Templates
In reply to: [Tora] CSS Color issueHi,
You can add this in a custom CSS plugin:
.page-header h1 { color: #000; }Forum: Themes and Templates
In reply to: [Tora] SITEWIDE BANNER | Upload a banner for bottom of header.Hi,
Ideally it would be 1920px in width.
Note that you can also upload a smaller image for mobiles, that one should be at 1024px in width.Forum: Themes and Templates
In reply to: [Tora] Problem with Huge IT SliderI still don’t see it.
What I assume happens is that the JS fails to run so the slider isn’t calculated in respect to your viewport.Did you add this wrapper for the slider yourself?
<div style="width: 100%;">
If you did, you can try hiding the overflow for it withoverflow:hidden;. That won’t fix the issue but it will stop it from creating the scrollbar.Forum: Themes and Templates
In reply to: [Tora] Underlining LinksHi,
You can add this in a custom CSS plugin:
.entry-content a { text-decoration: underline; }Forum: Themes and Templates
In reply to: [Tora] favicon | The uploaded file exceeds…Have a look please at this guide: http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
You can also find similar guides on Google. This is not something theme related so I can’t help you much I’m afraid.
Forum: Themes and Templates
In reply to: [Tora] Problem with Huge IT SliderHi,
Sorry for the late reply, I’ve been away.
I assume you’ve sorted it out? I’ve refreshed a couple of times and it looks okay.
Forum: Themes and Templates
In reply to: [Tora] Incorrect placement of elements on phonesThere’s was a missing margin, replace it with this please:
@media only screen and (max-width: 420px) { .masonry-layout .hentry, .posts-layout { max-width: 100% !important; margin: 0; } }Forum: Themes and Templates
In reply to: [Tora] Incorrect placement of elements on phonesHi,
Yeah, there’s some code missing there. It will be fixed in the next version. Meanwhile, if you want you can add this in a custom CSS plugin:
@media only screen and (max-width: 420px) { .masonry-layout .hentry, .posts-layout { max-width: 100% !important; } }Forum: Themes and Templates
In reply to: [Tora] Is Tora right for me?Hello,
You’ll have to test and see yourself if the theme integrates nicely with the plugins you want to use. The only built-in support is provided for the Live Composer plugin.
Vlad
Forum: Themes and Templates
In reply to: [Tora] Can't use "read more" optionHi,
I just retested the option (Customize > Blog > Excerpt) and it works as it should, meaning that it lets you replace the
[...]with your own text and link to the article. Perhaps you’re referring to something else?Forum: Themes and Templates
In reply to: [Tora] Menu over image & contact barI can point you in the right direction. There are actions throughout the theme. For instance in header.php:
<?php do_action('tora_header_image'); ?>That’s where the header image function (inc/functions/functions-header.php) is hooked and this is how you remove it:
<?php remove_action('tora_header_image', 'tora_header_area', 9); ?>Then you can hook your own function that does whatever you need it to do.
Forum: Themes and Templates
In reply to: [Tora] Menu over image & contact barCould be due to your css minifing plugin. The code itself is pretty straightforward so it can’t stop working by itself.