justgoodthemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bloggo] Embed video size issueHi @jarrot,
thank you for the kind words!
Regarding your question, we use Fitvids.js plugin to make video embeds responsive. This plugin makes the video embeds to expand full-width of the available content.
You could adjust this by wrapping your video embed in a
div
with the style attribute like this (in text mode of post editor):<div style="max-width: 320px;"> [embed width="320" height="240"]https://www.youtube.com/watch?v=EcD7KJrAxnI&feature=youtu.be[/embed] </div>
Hope this helps.
- This reply was modified 6 years, 3 months ago by justgoodthemes.
- This reply was modified 6 years, 3 months ago by justgoodthemes.
Forum: Themes and Templates
In reply to: [Bloggo] Site description runs offHi there,
I am happy to hear you love the theme!
As for your question, thank you pointing this out. I will fix the issue in the theme update. In the meantime you can add the following CSS rules to the Additional CSS field in the theme customizer:
@media only screen and (max-width: 640px) { .site-description { margin-top: 15px; } .site-branding { align-items: start; flex-direction: column; } }
Regards,
AstaForum: Reviews
In reply to: [Bloggo] Very good themeHi there,
thank you for the review, we really appreciate it!
Forum: Themes and Templates
In reply to: [Azalea] Add pageHi @larikock,
after adding a new page to your site in WordPress, it’s easy to add it to the navigation menu.
To create a navigation menu, go to Appearance → Customize and click on Menus. Next, click Create New Menu, type the menu name set the location of your menu by checking the “Primary Menu” location checkbox and click Next. Now that you have a menu and a location for it, all you need to do is to add menu items by clicking on the + Add Items button.
After you finish adding your menu items click Publish button.
Forum: Themes and Templates
In reply to: [Forma] Video post format doesn’t workHi @jasperketone,
sorry for late response. This theme does not use custom fields for video. If a post is set to use the Video post format, the first video tag or object/embed in the post content will be displayed below the post title as the featured video.
As for your old videos, you need to adjust this theme to retrieve custom field values and display videos.
Best,
TomasHi there,
happy to hear that you like the theme.
As for the featured image in the header, this will require heavy theme customization, like editing template files and adjusting stylesheet file. I cannot provide such customization for the free theme, since it takes quite some time to implement. I will leave this thread open, maybe someone from www.remarpro.com community will help you.
Regards, Tomas
Forum: Themes and Templates
In reply to: [Azalea] Drop Down Menus not workingTry to open browser developer tools (F12), switch to Console tab, refresh the page and check if you have any errors there.
Forum: Themes and Templates
In reply to: [Azalea] Home Page Post Display with Full ViewHi there,
go to Customize -> Post Settings and check the “Show automatically generated post excerpts on the main blog and archive pages” box.
Regards,
AstaForum: Themes and Templates
In reply to: [Azalea] “Sorry, that page can’t be found.” messageIf you have more questions related to Azalea theme, create a new thread. I’m closing this one as resolved.
Forum: Themes and Templates
In reply to: [Azalea] About Me in SidebarIf you have more questions related to Azalea theme, create a new thread. I’m closing this one as resolved.
Forum: Themes and Templates
In reply to: [Azalea] Drop Down Menus not workingHi there,
sorry, not sure that I understand your question correctly. Can you specify what you mean by saying “offsite locations”?
Forum: Themes and Templates
In reply to: [Azalea] “Sorry, that page can’t be found.” messageDo I understand you correctly, you are editing style.css via WordPress dashboard Appearance -> Editor -> style.css? As for this issue, I don’t think this is theme related. Can you specify what do you want to change?
Forum: Themes and Templates
In reply to: [Azalea] “Sorry, that page can’t be found.” messageForum: Themes and Templates
In reply to: [Stork] Replace default font when using a child themeHi there,
I will make the fonts function pluggable in the next theme update. For now you could dequeue parent theme’s fonts stylesheet:
function jgtstork_child_remove_parent_fonts() { wp_dequeue_style( 'jgtstork-fonts' ); wp_deregister_style( 'jgtstork-fonts' ); } add_action( 'wp_enqueue_scripts', 'jgtstork_child_remove_parent_fonts', 20 );
Then enqueue your desired Google fonts:
function jgtstork_child_font_styles() { wp_enqueue_style( 'jgtstork-child-fonts', jgtstork_child_font_url(), array(), null ); } add_action( 'wp_enqueue_scripts', 'jgtstork_child_font_styles' ); function jgtstork_child_font_url() { $font_url = add_query_arg( 'family', urlencode( 'Droid Serif:400,400i,700,700i' ), "https://fonts.googleapis.com/css" ); return $font_url; }
Hope this helps.
Regards,
AstaForum: Themes and Templates
In reply to: [Stork] How can I disable post excerpt in categories?I mark this topic as resolved.