vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Moesia] Multiple columns row in Front Page templateHey,
It does say in one of those topics that proper support for multiple columns is available since version 1.11 🙂 So I’m guessing you have a different problem, can you show a screenshot, maybe I can figure it out.
Forum: Themes and Templates
In reply to: [Moesia] Background Image UnvisibleSo you had the background image visible on your front page? It is still there in the code, but the rows have a white background by default so they hide the image. That’s how it’s always been as far as I remember.
Forum: Themes and Templates
In reply to: [Moesia] Background Image UnvisibleHey,
Can you post a link to your website. Last update didn’t have anything to do with background images.
Forum: Themes and Templates
In reply to: [Moesia] custom css rollbackAre you editing the theme’s style.css directly? If you do that, yeah, you’ll lose all changes when the theme updates. That’s how updates work. You should use a custom CSS plugin.
Forum: Themes and Templates
In reply to: [Moesia] Multisite with Theme Extensions — Not RecognizedHey,
The documentation video is done on a multisite setup so the issue might come from somewhere else. Also, you should post question related to our Moesia extensions in our forums as these forums are for the theme.
Forum: Themes and Templates
In reply to: [Moesia] delete thin lines between headlinesHey,
I see you managed to find a way to show the background.
The site logo in the fancybox doesn’t come from the theme. You probably have a plugin that opens all images in a lightbox.Forum: Themes and Templates
In reply to: [Moesia] Services tab – where to findIf you’ve imported the settings file then those tabs should be there. Have you done it like it is shown in the video on the documentation page?
Forum: Themes and Templates
In reply to: [Moesia] Call to Action not showing on laptop screenWell, you welcome logo is huge and it pushes the button down. It’s a logo, so it should be smaller 🙂 You’ve set it at a max-width of 1000px.
Forum: Themes and Templates
In reply to: [Moesia] Website title only in capital lettersHey,
Yeap, the title is automatically transformed to uppercase. If you would like to change this you can add this code in a custom CSS plugin:
.site-title { text-transform: none; }Forum: Themes and Templates
In reply to: [Moesia] Services sectionNope, the easiest way is with CSS in this case.
Forum: Themes and Templates
In reply to: [Moesia] Social Icon SizingUse this in a custom CSS plugin:
.social-widget li a::before { font-size: 60px; }And change 60px to the size you want.
Forum: Themes and Templates
In reply to: [Moesia] Individual banner offsetvlad[at]athemes.com. Though I’m mostly using that in case I need login info from users to check stuff.
Forum: Themes and Templates
In reply to: [Moesia] Search Bar / Search Result Pagesearchform.php is not part of the hierarchy so it won’t get picked up from your child theme.
The solution is to translate those strings, but that doesn’t work at the moment for this file because I copied the search form from another theme I made and I forgot to change the text domain.
We also have a group translation project for Moesia here: https://www.transifex.com/projects/p/moesia/. When translations are at 100% we include the language files in the theme. For pt_BR we’re at 31% at the moment.
Forum: Themes and Templates
In reply to: [Moesia] Social Icon SizingSure, the sidebar social widget or the front page one (with the bigger icons)?
Forum: Themes and Templates
In reply to: [Moesia] Individual banner offsetThe image being pixelated (if that’s what you mean about deforming) is because your image on the page you mentioned is very small. You should have one at least 1366×768.
The images might look weirdly cropped, but that’s the way it goes, they are background images set to cover.To change the position of the header image use this in a custom CSS plugin:
.has-banner:after { background-position: center center; }And it will be moved upward. You can even change the second
centerto a percentage.