vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Moesia] welcome area button not appearYou can add this to the button url:
http://yoururl.com/#testimonials
For other rows you can use a tool like Chrome dev tools to get the ID and follow the same logic as above.Forum: Themes and Templates
In reply to: [Moesia] welcome area button not appearCan you post a link to your website?
Have you saved the settings in the Customizer after you’ve set your button text and link?Forum: Themes and Templates
In reply to: [Moesia] Which Font are you using?We have a little plugin on the Moesia extensions page that might help you: http://athemes.com/moesia-extensions/
Forum: Themes and Templates
In reply to: [Moesia] Project galery on subpageHello,
First of all you should update the theme. You’re on 1.06 and the latest version is 1.24. Then we’ll see about your issues.
Where did you get 1.06 from?Forum: Themes and Templates
In reply to: [Moesia] ScrollbarHello,
You can either deactivate the custom scrollbar from Customize > General or you can create a child theme and edit the nicescroll-init.js file from that child theme. You’ll notice
cursorwidth: 5in that file.Forum: Themes and Templates
In reply to: [Moesia] Display page content in employees templateHey,
You mean to display the page content before listing the employees? You’ll need to do it in the loop:
<?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; ?>Forum: Themes and Templates
In reply to: [Moesia] Fixed sidebar widget while scrollingWell, that’s why I added the .welcome-button class in that link, so you don’t have to copy the styles 🙂
Forum: Themes and Templates
In reply to: [Moesia] Custom FP boxIf it didn’t fill the whole space then you’ve probably set it as a widget background, not as a row background.
Forum: Themes and Templates
In reply to: [Moesia] Custom FP boxI guess you could achieve that with a regular text widget and some custom CSS. You can set a background color for the row from Edit Row > Theme, then place your widget on that row and add your content. After that you can let me know if you need help with the styling, though obviously it won’t be exactly the same as on the Asus website.
Forum: Themes and Templates
In reply to: [Moesia] Employees and ServicesYou can edit them below the post editor, it’s right there next to employee position.
Change the slug for your services page to something other than services. That name is reserved for the archive.
Forum: Themes and Templates
In reply to: [Moesia] Problem with parallax in call to action sectionHey,
The parallax is disabled on small screens. You can add this to a custom CSS plugin if you want to change the height for that section:
.action-area { height: 300px; }Forum: Themes and Templates
In reply to: [Moesia] pictures brokenHey,
It doesn’t have much to do with the theme. Your images can’t be displayed because they are not there. This is a direct link you’re using for one of your image, as you can see there is no image there: http://i2.wp.com/www.archimedeparis.com/wp-content/uploads/2014/12/archimedeparis-camilleloizillon-etiennemaury-tshirtblanc-streetwear.jpg?fit=1024%2C1024
Forum: Themes and Templates
In reply to: [Moesia] Hide / choose not to display page nameYou could hide it with some CSS added into a custom CSS plugin.
This will hide it for all pages:.page .entry-header { display: none; }This will hide it only for the page you linked:
.page-id-173112087 .entry-header { display: none; }Forum: Themes and Templates
In reply to: [Moesia] Footer parallax image?I don’t really understand what you mean. You want to add a background to the footer or what exactly?
Forum: Themes and Templates
In reply to: [Moesia] one column width vs multiple column widthYeah, that’s how it works. Though I admit it probably wasn’t the best idea ever, although some people appreciate more space in multi columns rows.
What you can do is leave all rows to standard and then target the rows you want by ID (this will do it for you Friday/Saturday row)#pg-6-2 { max-width: 1170px; margin-left: auto !important; margin-right: auto !important; }