Search found 7 matches

by geonao
Tue Jul 10, 2018 9:17 pm
Forum: Themes
Topic: image and cover image size and position
Replies: 2
Views: 2801

Re: image and cover image size and position

Finally, I'm getting it, slowly :) I've made few edits in theme's dir - style.css, home.php and page.php. Now, I have the coverImage size as I like it, I'm linking coverImage from Home view to the referring page, and I'm not displaying coverImage in the page itself. Thank you for the hints and help
by geonao
Sun Jul 01, 2018 2:44 am
Forum: Themes
Topic: image and cover image size and position
Replies: 2
Views: 2801

image and cover image size and position

I'm using Blog X theme I've noticed that the cover image is automagically resized. Which part of the CMS do I need to look at to deal with size and position of the cover image and images in the page? Edit: I'm assuming that the cover image is resized to some sort of "thumb" format and the ...
by geonao
Fri Jun 29, 2018 11:39 pm
Forum: Themes
Topic: [THEME] Editorial
Replies: 13
Views: 12511

Re: [THEME] Editorial

I solved my issue with displaying my video clip in Category and Tag listings. Since I don't run the CMS from web server's root dir, but its own, then I needed to use absolute path of the CMS dir, as below: <video width="100%" controls> <source src="/mycms/bl-content/uploads/myvideo.mp...
by geonao
Thu Jun 28, 2018 11:58 pm
Forum: General
Topic: Site Slogan
Replies: 2
Views: 1882

Re: Site Slogan

Got it. Thank you
by geonao
Thu Jun 28, 2018 9:40 am
Forum: Themes
Topic: [THEME] Editorial
Replies: 13
Views: 12511

Re: [THEME] Editorial

The code will be for example: <video width="320" height="240" controls> <source src="/bl-content/uploads/myvideo.mp4" type="video/mp4"> <source src="/bl-content/uploads/myvideo.ogg" type="video/ogg"> Your browser does not support the video...
by geonao
Thu Jun 28, 2018 8:03 am
Forum: General
Topic: Site Slogan
Replies: 2
Views: 1882

Site Slogan

Firstly, I want to say that "Bludit CMS" is a very nice flat file cms project. Thanks for sharing the code! Now, where and what tag do I use to incorporate the Site Slogan? I I use copy of the included BlogX theme, re-named it and adjusted the metadata.json to reflect the new name of theme...
by geonao
Thu Jun 28, 2018 12:08 am
Forum: Themes
Topic: [THEME] Editorial
Replies: 13
Views: 12511

Re: [THEME] Editorial

Sorry for the <script> paste above. js is not needed to stream mp4 video . So, only the <video> tag is OK to display (play) local video on the page <video width="100%" controls> <source src="bl-content/uploads/myvideo.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"...