LATEST_NEWS - Too mach space for column 'LAST_POST'
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
Topic author - Active Member
- Posts: 12
- Joined: 30. October 2015 08:30
- phpBB.com User: demonlibra
LATEST_NEWS - Too mach space for column 'LAST_POST'
Your Portal Version: 2.1.0
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://forum.tecnocom-ug.ru
PHP Version: 5.3.13
MySQL Version: 5.1.41
What have you done before the problem was there?
What have you already tryed to solve the problem?
I try to edit file "...\ext\board3\portal\styles\prosilver\theme\portal.css".
But after my changes, if I change width window of browser style is broken.
Description and Message
In module "LATEST_NEWS" too mach space for column "LAST_POST"
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://forum.tecnocom-ug.ru
PHP Version: 5.3.13
MySQL Version: 5.1.41
What have you done before the problem was there?
What have you already tryed to solve the problem?
I try to edit file "...\ext\board3\portal\styles\prosilver\theme\portal.css".
But after my changes, if I change width window of browser style is broken.
Description and Message
In module "LATEST_NEWS" too mach space for column "LAST_POST"
-
Topic author - Active Member
- Posts: 12
- Joined: 30. October 2015 08:30
- phpBB.com User: demonlibra
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Hi
Open: root/ext/board3/portal/styles/stylename/theme/portal.css
Find and delete this:
Check if it is in the responsive view display errors.
Open: root/ext/board3/portal/styles/stylename/theme/portal.css
Find and delete this:
Code: Select all
ul.topiclist dt .list-inner {
margin-right: 60%;
}
ul.topiclist dt {
margin-right: -60%;
}
ul.responsive-portal-news dd:last-of-type, ul.responsive-portal-announcements dd:last-of-type,
#portal-forumlist ul dd:last-of-type {
width: 25%;
}
dd.responsive-portal-news:last-of-type, dd.responsive-portal-announcements:last-of-type {
width: 25%;
}
.rtl ul.topiclist dt .list-inner {
margin-left: 60%;
}
.rtl ul.topiclist dt {
margin-left: -60%;
}
.rtl ul.responsive-portal-news dd:last-of-type, ul.responsive-portal-announcements dd:last-of-type,
.rtl #portal-forumlist ul dd:last-of-type {
width: 25%;
}
.rtl dd.responsive-portal-news:last-of-type, dd.responsive-portal-announcements:last-of-type {
width: 25%;
}
Gruß Udo
-
Topic author - Active Member
- Posts: 12
- Joined: 30. October 2015 08:30
- phpBB.com User: demonlibra
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Thank you.
Not perfect, but without these rows much better.
Not perfect, but without these rows much better.
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Hi!
I've tried this modification, but can not see any difference in those two columns length.
They are in the same positions..
How can be expanded width of the first one in left ?
Thanks in advance
I've tried this modification, but can not see any difference in those two columns length.
They are in the same positions..
How can be expanded width of the first one in left ?
Thanks in advance
-
Topic author - Active Member
- Posts: 12
- Joined: 30. October 2015 08:30
- phpBB.com User: demonlibra
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Did you Purge the cache?
-
Topic author - Active Member
- Posts: 12
- Joined: 30. October 2015 08:30
- phpBB.com User: demonlibra
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
On width between 895...1040px was some problem
I done some modification
1. .../ext/board3/portal/styles/prosilver/theme/portal_responsive.css
2. For style .../styles/basic_red/theme/stylesheet.css and .../styles/elegance_steelblue/theme/stylesheet.css
I done some modification
1. .../ext/board3/portal/styles/prosilver/theme/portal_responsive.css
- 1.1 Add to the top
Code: Select all
ul.topiclist dt { margin-right: -340px; }
ul.topiclist dt .list-inner { margin-right: 40%; }
.forabg li.header dd { display: block; }
.forabg li.header dt, .forabg li.header dt .list-inner { float: left; width: 100% }100% }
- 1.2 After this code
Code: Select all
@media only screen and (max-width: 1040px), only screen and (max-device-width: 1040px)
{
...
}
- add
Code: Select all
.responsive-portal-news dd.lastpost { width: 150px; }
dd.lastpost.responsive-portal-news { width: 150px; }
- 1.3 Replace
Code: Select all
.responsive-portal-news dt { width: 130% !important; }
- to
Code: Select all
.responsive-portal-news dt { width: 100% !important; }
- Search
Code: Select all
.forabg li.header dt,.forabg li.header dt .list-inner{
- and delete
Code: Select all
margin:0;
-
- Active Member
- Posts: 11
- Joined: 12. November 2015 19:39
- phpBB.com User: Bermudez
- Location: 40.344166N, -1.103240W
- Contact:
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Sorry for reviving this topic after so long.
It's just to remind the developer that keep in mind this change in the next portal release because this way this module looks much better aesthetically.
Regards.
It's just to remind the developer that keep in mind this change in the next portal release because this way this module looks much better aesthetically.
Regards.
-
- Active Member
- Posts: 24
- Joined: 7. January 2017 14:34
Re: LATEST_NEWS - Too mach space for column 'LAST_POST'
Hi,
here are the changes I've made for myself.
/ext/board3/portal/styles/{YOUR-STYLE}/theme/portal.css
Add:
here are the changes I've made for myself.
/ext/board3/portal/styles/{YOUR-STYLE}/theme/portal.css
Add:
Code: Select all
/* Latest Posts */
ul.topiclist.topics.responsive-portal-news dt .list-inner .pagination, ul.topiclist.topics.responsive-portal-announcements dt .list-inner .pagination {
margin-top: -3px !important;
}
@media only screen and (min-width: 1190px) {
ul.topiclist.topics.responsive-portal-news dd.posts, ul.topiclist.topics.responsive-portal-news dd.topics, ul.topiclist.topics.responsive-portal-news dd.views,
ul.topiclist.topics.responsive-portal-announcements dd.posts, ul.topiclist.topics.responsive-portal-announcements dd.topics, ul.topiclist.topics.responsive-portal-announcements dd.views {
width: 65px !important;
}
ul.topiclist.topics.responsive-portal-news dt .list-inner, ul.topiclist.topics.responsive-portal-announcements dt .list-inner {
margin-right: 41% !important;
}
dd.posts.responsive-portal-news, dd.posts.responsive-portal-announcements {
margin-left: 18.5% !important;
}
dd.views.responsive-portal-news, dd.views.responsive-portal-announcements {
margin-left: -31px !important;
}
dd.lastpost.responsive-portal-news, dd.lastpost.responsive-portal-announcements {
margin-left: -20px !important;
}
ul.topiclist.topics.responsive-portal-news dd.posts, ul.topiclist.topics.responsive-portal-announcements dd.posts {
margin-left: 20% !important;
}
dd.responsive-portal-news:last-of-type, dd.responsive-portal-announcements:last-of-type,
ul.responsive-portal-news dd:last-of-type, ul.responsive-portal-announcements dd:last-of-type, #portal-forumlist ul dd:last-of-type {
width: 20% !important;
}
}