Bludit v1.1 "The Dig"

User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

Bludit
Version: 1.1
Codename: The Dig
Release date: 2016-02-19

Changelog and more information here: https://blog.bludit.com/en/post/bludit-v1-1-the-dig

I want to announce with great pleasure the new version of Bludit v1.1, with new features, improves and bug fixes.
Bludit is open source and free, that why we need user's collaboration, here is a list of what you can do for Bludit.

How to collaborate
- Make a Theme. https://docs.bludit.com/en/themes/theme-basics
- Make a Plugin.
- Translate Bludit.
- Translate the plugins. https://docs.bludit.com/en/languages/translate-plugins
- Translate the themes. https://docs.bludit.com/en/languages/translate-themes
- Translate or improve the documentation. https://github.com/dignajar/bludit-documentation
- Help the users on the forum. https://forum.bludit.org
- Share Bludit with your friends, on Twitter or Facebook.
- Vote Bludit
* Bitnami https://bitnami.com/stack/bludit
* Softaculous https://www.softaculous.com/apps/cms/Bludit
* CMSGuide http://www.cmsguide.info/guide/directory/blogs/bludit
- Make a review.
- Make a video and upload on Youtube or Vimeo.
- Make a donation, to pay the server, domains, and future projects. There is a button on https://www.bludit.com
User avatar
Herk
Sr. Bludit
Posts: 38
Joined: Wed Aug 19, 2015 8:31 am

You are the great developer!!!
User avatar
Bazim
Jr. Bludit
Posts: 5
Joined: Sat Feb 06, 2016 7:08 pm

Please fix changelog it says 404 not found.
kaaleth
Master Bludit
Posts: 117
Joined: Sun Jun 14, 2015 9:55 am

Thanks.

PS New homepage, I like it!
User avatar
DarrenDriven
Master Bludit
Posts: 69
Joined: Thu Jan 07, 2016 9:39 am
Location: Portland OR
Contact:

I LOVE this script and also that you are constantly improving it!

Could I get some clarity as to what is now going on with the sidebar menu on the left?

I'm still running 0.8x? (not sure where to find version) on my main site and when I upgraded to 1.0x the sidebar got shoved way over to the left.

Check it out:
0.8x: http://idrewyourcar.com/
1.1: http://darrendriven.com/bludit/


Image
0.8x?

Image
1.1
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

DarrenDriven wrote:I LOVE this script and also that you are constantly improving it!

Could I get some clarity as to what is now going on with the sidebar menu on the left?

I'm still running 0.8x? (not sure where to find version) on my main site and when I upgraded to 1.0x the sidebar got shoved way over to the left.

Check it out:
0.8x: http://idrewyourcar.com/
1.1: http://darrendriven.com/bludit/


Image
0.8x?

Image
1.1
You can see the version on the admin panel->settings->about

I think the problem with the themes is the CSS, remove this line from bl-themes/asset/css/bludit.css

Code: Select all

img {
	max-width: 100%;
}
User avatar
DarrenDriven
Master Bludit
Posts: 69
Joined: Thu Jan 07, 2016 9:39 am
Location: Portland OR
Contact:

I was running 0.7.2.

That didn't fix it, but I'll dig around and see if I can figure it out.
User avatar
diego
Site Admin
Posts: 773
Joined: Sat May 16, 2015 2:53 pm
Been thanked: 1 time
Contact:

Could you post the bludit.css from the theme of the version 1.1 ?

I was looking for and it the CSS for img.

try with this:

Code: Select all

.plugin ul {
	list-style: none !important;
	padding: 0 !important;
}

.plugin li {
	padding: 0 !important;
}

.plugin-pages ul.children {
	margin-left: 10px;
}

/* Just for Plugin tags */
.plugin-tags li {
	text-transform: capitalize;
}

img {
	width: 100%;
}
User avatar
DarrenDriven
Master Bludit
Posts: 69
Joined: Thu Jan 07, 2016 9:39 am
Location: Portland OR
Contact:

That fixed it. Thanks!
Last edited by DarrenDriven on Fri Feb 19, 2016 9:23 pm, edited 1 time in total.
User avatar
DarrenDriven
Master Bludit
Posts: 69
Joined: Thu Jan 07, 2016 9:39 am
Location: Portland OR
Contact:

Changing img max-width: 100%; to width: 100%; solved it!

Another thing that I noticed is that when you click through to the second page of the blog posts the URL shows page=1. It's a little strange since page one should be the front page. The second page should probably say page=2 in the URL. Very minor, I know.
Post Reply