vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Oblique] Oblique – How can I put all posts on 1 page?Don’t know when it will be out. I submitted it but the review queue is long atm. Should be a few days.
You can add this in a custom CSS plugin for the images, at least for now:img[class*="wp-image-"] { margin: 15px auto; }Forum: Themes and Templates
In reply to: [Amadeus] Hide Featured ImageHi,
Next version (which was already submitted) will include the ability to hide the featured images on single posts.
There’s an option to display the logo+site title+site description in Header Area > Site branding. I assume you want to hide the title? You’ll need a custom CSS plugin and you should add this code in it:
.site-title { display: none; }Forum: Themes and Templates
In reply to: [Oblique] Oblique – How can I put all posts on 1 page?For the fonts you’ll need to wait for the next theme version. Don’t know what you mean about the alignment.
Forum: Themes and Templates
In reply to: [Sydney] sliding header imageI don’t think you can achieve what you want while also keeping the menu bar sticky. It’s easy to add text above the slider, but then the menu bar will cover that text.
You can try something like this. Add this right above the slider template:
<div class="top-text"> <div class="container"> Your text here </div> </div>Then add this in your styles:
.top-text { padding: 120px 0 30px; background-color: #d8d8d8; }Forum: Themes and Templates
In reply to: [FlyMag] Image sizes clutterForgot to mention that I do plan to do an update when time allows it and I’ll see if anything can be optimized regarding the image sizes.
Forum: Themes and Templates
In reply to: [FlyMag] Image sizes clutterSorry for the delay.
All image sizes have a purpose, they might not have one at the screen resolution you’re looking at.
The sizes described in your last paragraph have nothing to do with the theme.Forum: Themes and Templates
In reply to: [Amadeus] Full width?Hi,
See Customize > Blog options. But it won’t stretch to the screen’s width if that’s what you mean by full width, it will just remove the sidebar.
Forum: Themes and Templates
In reply to: [Oblique] Oblique – How can I put all posts on 1 page?Glad you guys like the theme 🙂
Reviews are always appreciated.Can’t really say, if you’ve followed the videos then it should work without issues. Try with a different browser.
Forum: Themes and Templates
In reply to: [Sydney] sliding header imageI just had a quick look. Note that <header> is the one that becomes sticky. You moved everything away from it.
Forum: Themes and Templates
In reply to: [Amadeus] Social menuIt’s not defined in the theme but it is included it in the icon pack so it’s easy to do it yourself. Install a custom CSS plugin and add this:
.social-navigation li a[href*="soundcloud.com"]::before { content: '\f1be'; }Ratings are appreciated if you enjoy the theme 🙂
Forum: Themes and Templates
In reply to: [Amadeus] Social menuHi,
You need to go to Appearance > Menus and create a new menu there with links to your social profiles. Then assign that menu to the social position and that’s it.
Forum: Themes and Templates
In reply to: [Amadeus] sidebar not showingGo to Customize > Blog Options please. You’ve disabled the sidebar from there.
Forum: Themes and Templates
In reply to: [Amadeus] sidebar not showingHi,
I would need to see your site.
Forum: Themes and Templates
In reply to: [Sydney] sliding header imageHi,
To answer both your questions at the same time: the slider needs to be full screen but if you add text above it then it will be pushed down. So edit header.php from the child theme and add what you need right above
<?php sydney_slider_template(); ?>. We’ll see after that if you need some styling or something.