Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Ddraig goes Responsive

Asked Modified Viewed 16,271 times
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
asked
Veteran Member

As the title says Ddraig is now (almost fully) responsive.
The theme is still under development but can be downloaded for testing purposes from the [size=16]Github repo[/size]. Feedback is welcomed.

Some of the newly features:
- the space real estate when in responsive mode is used at it's best and doesn't overflow hiding elements of the theme/site or making them unaccessible
- when viewing a forum or a thread details about them can be found at the top. Such as threads and posts counts.
- ONLINE status in forum next to the user name and in the profile page
- "Who posted", the list of users who posted in a thread and the number of posts made
- as seen on this site "Latest active threads", "Participated threads" and "Unanswered threads"
- responsive flexible menu, only the links that can't fit in the window are hidden
- some of the images were replaced with CSS icons so they scale and look nice on any device
- the Admin Panel is also very responsive and you'll be able to do pretty much anything, the design wont overflow making you unable see or access stuff
- the Theme Control Panel infusion is now independent from the theme.This means there will no longer be different infusions for each theme and you can use the same infusion to control more than one theme settings.
- hot threads, they are marked with a "HOT" orange tag

[size=20]Some screenshots[/size]

Theme was tested on a Moto G using Chrome an on desktop was tested on the latest versions of Firefox and Chrome and IE8+. I wont be supporting older versions if there is something wrong, if one can't be bothered to update it's browser neither can I be bothered to support it.
In this version the support for IE7 was completely dropped, IE8 is still supported (mostly) but don't expect the theme to become responsive when using it.

DISCLAIMER:
This version is under development and is not production ready, use at your own risk
Edited by JoiNNN on 31-08-2014 02:58,
0 replies

59 posts

D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Craig in this theme

problem in top spoiled


//Render News
 function render_news($subject, $news, $info) {
    global $locale, $settings, $aidlink;
   $parameter= $settings['siteurl']."news.php?readmore=".$info['news_id'];

$title= $settings['sitename'].$locale['global_200'].$locale['global_077'].$locale['global_201'].$info['news_subject']."".$locale['global_200'];
   $breaking_news = 56600; //Breaking News Time (1 Hour/60 Mins/3600 Seconds)
if (!isset($_GET['readmore'])) {
   
    opentable("<span class='' onclick=\"location='".BASEDIR."news.php?readmore=".$info['news_id']."'\" style='cursor:pointer;'>".$subject, "</span> ".(time()-$info['news_date'] < $breaking_news ? " <img class='breaking-news' src='".get_image("new")."' title='".$locale['theme_039c']."' alt='".$locale['theme_039c']."'/>" :
   ($info['news_sticky'] == 1 ? "<img class='sticky-news' src='".get_image("sticky")."' title='".$locale['theme_038b']."' alt='".$locale['theme_038b']."'/>" : "")));
   }else{
         opentable($subject.(time()-$info['news_date'] < $breaking_news ? " <img class='breaking-news' src='".get_image("new")."' title='New News Item' alt='New News Item'/>" :
   ($info['news_sticky'] == 1 ? "<img class='sticky-news' src='".get_image("sticky")."' title='Sticky News Item' alt='Sticky News Item'/>" : "")));
   }
   
   
   
   
   
                  echo "<div class='flright clearfix'>\n
              <a href='".BASEDIR."print.php?type=N&amp;item_id=".$info['news_id']."'><img  src='".get_image("printer")."' title='Print' alt='printer' /></a>\n";
            if (iADMIN && checkrights("N")) {
          echo " <a href='".ADMIN."news.php".$aidlink."&amp;action=edit&amp;news_id=".$info['news_id']."'><img  src='".get_image("edit")."' alt='".$locale['global_076']."' title='".$locale['global_076']."' border='0' /></a>\n";
               }
         echo "</div>\n";
   
   
   
   
   echo "<ul class='item-info news-info'>\n";
   //Author
   echo "<li class='author'>".profile_link($info['user_id'], $info['user_name'], $info['user_status'])."</li>\n";
   //Date
   echo "<li class='dated'>".showdate("newsdate", $info['news_date'])."</li>\n";
   //Category
   echo "<li class='cat'>\n";
      if ($info['cat_id']) {
         echo "<a href='".BASEDIR."news_cats.php?cat_id=".$info['cat_id']."'>".$info['cat_name']."</a>\n";
      } else {
         echo "<a href='".BASEDIR."news_cats.php?cat_id=0'>".$locale['global_080']."</a>";
      }
   echo "</li>\n";
   //Reads
   if ($info['news_ext'] == "y" || ($info['news_allow_comments'] && $settings['comments_enabled'] == "1")) {
   echo "<li class='reads'>\n";
      echo $info['news_reads'].$locale['global_074'];
   echo "</li>\n";}
   //Comments
   if ($info['news_allow_comments'] && $settings['comments_enabled'] == "1") { echo "<li class='comments'><a ".(isset($_GET['readmore']) ? "class='scroll'" : "")." href='".BASEDIR."news.php?readmore=".$info['news_id']."#comments'>".$info['news_comments']."".($info['news_comments'] == 1 ? $locale['global_073b'] : $locale['global_073'])."</a></li>\n"; }
   echo "</ul>\n";
   
//The message
       echo "<div class=''>".$info['cat_image'].$news."</div>\n";


//Read more button
   if (!isset($_GET['readmore']) && $info['news_ext'] == "y") {
      echo "<div class='readmore flright'><a href='".BASEDIR."news.php?readmore=".$info['news_id']."' class='news-button'>".$locale['global_072']."..</a></div>\n";
   }
   echo "<!--news_id-".$info['news_id']."_end-->";
   closetable();
}


http://www.hellasplus.com/imagehost.p...&id=15
Edited by dimki on 13-09-2014 16:39,
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
answered
Veteran Member

You guys want the sticky icon on news as in Stylo, or what?
Just make a request and on Github or here and I'll add it.

Also dimki feel free to change "Theme by JoiNNN Designed by Dimi" to "Theme designed by Dimi (based on Ddraig)" or something like that.
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

ok thanks look to the code up

readmore in top title 1

breaking_news in top title icon as new post right or left 2

sticky icon in top title right or left 3

and print and admin edit right item-info


all is from another theme Craig theme

Thanks if you do something :G
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Quote



all is from another theme Craig theme

- by dimki


:G
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

here the changes made by this theme will upload in a few days to my http://www.hellasplus.com/news.php demo

a little different style
PublisherBlogger mobile theme <<< >> based on Ddraig theme hiar download if you like http://www.hellasplus.com/upload/inde...ile_Themes thanks to JoiNNN and Craig <<<< no questions im not very Good in English .



normal mode
www4.picfront.org/picture/xnwmEYuLGf4/thb/Image.jpg

winter mode
www2.picfront.org/picture/uqhurrGe/thb/Imag.gif
Edited by dimki on 21-09-2014 18:58,
0 replies
L
lifeguard
L
  • Member, joined since
  • Contributed 113 posts on the community forums.
  • Started 27 threads in the forums
answered
Member

Not Found

The requested document was not found on this server.
Web Server at langenau-kirche.de
Edited by N/A on 22-09-2014 19:34,
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Lol im no home :@ hm probleme server? i dont no
Haker ? :@
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Anyway, Good Job dimi! :G
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

JoiNNN @ news title and integrated read more how to do it ?
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
answered
Veteran Member

@dimki Kinda forgot about it but now is done.
Check https://github.com/JoiNNN/Ddraig-them...e/tree/dev, added:
- "Breaaking News" tag
- "Sticky News" icon
- News titles are now links to extended news
Edited by JoiNNN on 17-10-2014 01:38,
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

super :D @JoiNNN i test this thanks :G
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

1 problem title color I have something different

normal I have

black + hover blue
.maincap {   clear: both;  font-size: 18px; font-weight: bold;  line-height: 25px;  padding: 0;
 text-transform: none; color : #161616;     margin: -7px 5px 5px 4px;}
 .maincap:hover {color : #de7037;}


different color title news red from this

/* Links */
a { color :#de7037; text-decoration: none;  font-weight: none; transition: color 0.2s linear 0s; }
a:active, a:focus, a:active.side, a:hover {  color :#000;   text-decoration: none;}



I want the previous colors as old

the problem is here
   // Title as link to extended news
   $subject = preg_replace("/<a name='news_([0-9]+)' id='news_([0-9]+)'><\/a>/i", '', $subject);
   if (!isset($_GET['readmore'])) {
      $subject = "<a href='".BASEDIR."news.php?readmore=".$info['news_id']."'>".$subject."</a>";
   }


hiar i think
/<a name=
this < a > a solution thanks
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
answered
Veteran Member

Target the link not the panel cap, .maincap a:hover
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

hm :x make the change because I'm confused

.maincap .options {   overflow: hidden;   float: right;   height: 18px;   padding-top: 4px;}
.maincap .print, .maincap .edit {   float: left;}
.news-category {   padding: 4px;   background: none;   float: left;   margin: 0.2em 0.5em 0 0;}




.panel { font: 11.5px/1.4em "Ubuntu",Helvetica,Arial,sans-serif; color: #666666;  background-color:  #f8f8f8;   display: block;    vertical-align: top;  padding: 6px 6px 6px 6px;  margin-top: 2px;  border: 1px solid #e6e7e9; box-shadow: 0 3px 0 0 rgba(135, 135, 135, 0.1); box-sizing: border-box; }

.panelcap, .maincap {   margin: 0px 5px 5px 4px; }

h2.panelcap {   position: relative;     color: #000;   font-size: 18px; font-weight: 700;  line-height: 1.2;  margin-bottom: 10px;
min-height: 18px; /* IE7 */      padding: 2px 5px 0px 5px;}



.maincap {   clear: both;  font-size: 18px; font-weight: bold;  line-height: 25px;  padding: 0;
 text-transform: none; color : #161616;     margin: 2px 5px 5px 5px;}
.maincap:hover {color : #2779c5;}

.panelbody { background: #f2f2f2;  z-index: 1000; }
.contentbody {   padding: 4px 6px 10px;  margin-bottom: 15px; z-index: 1000;}
.post .contentbody,.article .contentbody {font:13px/1.4em "Ubuntu",Helvetica,Arial,sans-serif; color: #777;   display: block;    vertical-align: top;  padding: 6px 6px 6px 2px;}
#container .panel, .post, .article {   overflow: hidden; background: none;  border: 0 none; box-shadow: none; }
.panelcap,.sides .panel, #navigation h2, .side-label {   overflow: visible; /* IE7 */   zoom: 1; /* IE7 */   position: relative; }
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
answered
Veteran Member

add to bottom of styles.css
.maincap a { color: red }
.maincap a:hover { color: blue }

change colors
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

ok this its no 100% problem title forum menu very large letters in forum ,
there is no hover up in foto slide-show as before

I think will be to change the code in theme.php does not pass the line < a somewhat different
0 replies
J
JoiNNN
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
answered
Veteran Member

I have no idea what you mean or want... sorry.
And this
 $subject = preg_replace("/<a name='news_([0-9]+)' id='news_([0-9]+)'><\/a>/i", '', $subject);

simply removes an empty link from news title that is not supposed to be there, dunno what you think it does.
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

ah you have changed some things in styles.css for self not work title color Now I saw it
0 replies
— 2 months later —
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

last for this year and for the 2015 I do not know maybe we should wait for the next version

Classy theme mobile or around problem on small mobile phones because the large panels 320px if you resize it's OK in 220px
www11.picfront.org/picture/VJfr4POi/thb/Unbenannt.PNG

download http://www.hellasplus.com/upload/inde...ile_Themes


left menu not working only header read above


and good years in peace :Y
0 replies
— 3 months later —
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

hi JoiNNN@ is possible to Place the colors new this Winter Mode without administrator to use this with another each user free no only admin

I have changed many in this point and I have added different color back, demo in main site
0 replies

Category Forum

General Discussion

Labels

None yet

Statistics

  • Views 0 views
  • Posts 59 posts
  • Votes 0 votes
  • Topic users 11 members

11 participants

F
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
H
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,246 posts on the community forums.
  • Started 108 threads in the forums
C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
J
J
JoiNNN 10
  • Veteran Member, joined since
  • Contributed 850 posts on the community forums.
  • Started 100 threads in the forums
  • Started this discussions
D
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
L
L
  • Member, joined since
  • Contributed 113 posts on the community forums.
  • Started 27 threads in the forums
K
K
KasteR 10
  • Senior Member, joined since
  • Contributed 290 posts on the community forums.
  • Started 1 thread in the forums
R
R
Rudios 10
  • Member, joined since
  • Contributed 145 posts on the community forums.
  • Started 16 threads in the forums
B
B
Bam 10
  • Newbie, joined since
  • Contributed 5 posts on the community forums.
P
P
  • Newbie, joined since
  • Contributed 1 post on the community forums.
G
G
grogui 10
  • Newbie, joined since
  • Contributed 1 post on the community forums.

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet