MyBB Community Forums

Full Version: Duende V2 Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
(2015-01-06, 02:10 AM)Spizy Wrote: [ -> ]@Casey S

This is the original header for this template:

<div id="wrapper"></div>
<div id="topwrap"><a name="top" id="top"></a>
<div id="mainwidth">

  <div class="float_left">   
  <div class="menu" style="margin-top: 0%;">
    <ul>
<li> <a href="{$mybb->settings['bburl']}/portal.php"><i class="fa fa-home"></i></br>Home</a></li>
      
<li> <a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments"></i></br>Forums</a>
      
<li> <a href="{$mybb->settings['bburl']}/search.php"><i class="fa fa-search fa-fw"></i></br> Search</a></li>
      
<li> <a href="{$mybb->settings['bburl']}/memberlist.php"><i class="fa fa-user fa-fw"></i></br> Members</a></li>
      
<li> <a href="{$mybb->settings['bburl']}/calendar.php"><i class="fa fa-calendar fa-fw"></i></br> Calendar</a></li>
      
<li> <a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-life-ring fa-fw"></i></br> Help</a></li>
      <ul></div></div>
<div class="float_right">{$welcomeblock}</div>

 </div></div>

			
<div id="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}"  /></a></div>
<div class="searchbox">
    <form action="search.php" method="post">
        <input type="text" name="keywords" class="textosearch" placeholder="Search..." title="Insert key words to perform a search..." />
        <input type="submit" name="submit" class="boton5" value="Search" />
        <input type="hidden" name="action" value="do_search" />
    </form></div></br>

    
 <br />
  <div id="mbox" style="margin-top: -5px;">  
 


    

      <br />
     <div id="container">
		<div id="content">
			<div class="wrapper">
				{$pm_notice}
				{$bannedwarning}
				{$bbclosedwarning}
				{$unreadreports}
				{$pending_joinrequests}
				{$awaitingusers} <!-- BAM -->{$bam_announcements}<!-- /BAM -->
				<navigation>
                  <br />

Tried that and it didn't work.
Hm.. Try to look back and forth between the templates you used to have for the theme, and the new templates you downloaded today/yesteryday. Might notice the differnece like that. I didnt download the V2.

I realized, maybe I had to go to where i colored the button in the first place.. the simplelikes.lang.php..

This is the code of the "Like' and "Unlike" buttons. Deleteing the <font color="#2EBA2E"> from the "Like" code.. keeps it from showing up in the post text. This of course isn't an absoult fix because it would be nice to have it colored. But i can live without it.

This is the code i'm speaking about:

$l['simplelikes_like']   = '<font color="#2EBA2E"><i class="fa fa-check"></i> Like ';
$l['simplelikes_unlike'] = '<font color="#B0A2F2"><i class="fa fa-times"></i> Unlike ';

[Image: 2dd55ec600.jpg]

I want to thank you Leefish for helping me!

Although, If you do have a soultion that would allow me to keep the color, please do share Smile
try this in your language file:

$l['simplelikes_like']   = '<span class="like"> <i class="fa fa-check"></i>Like</span> ';

and in your css create a class of like

.like {color: #2EBA2E;}
@Leefish, that worked, and the fix that .m. pm'd me did as well!

Two awesome fixs, thank you guys so much!

.m. Wrote:
$l['simplelikes_like']   = '<font color="#2EBA2E"><i class="fa fa-check"></i> Like ';
$l['simplelikes_unlike'] = '<font color="#B0A2F2"><i class="fa fa-times"></i> Unlike ';

</font> is missing for both lines

$l['simplelikes_like']   = '<font color="#2EBA2E"><i class="fa fa-check"></i> Like</font> ';
$l['simplelikes_unlike'] = '<font color="#B0A2F2"><i class="fa fa-times"></i> Unlike</font> ';
Yea, that does fix it (the font) but I did not wish to encourage you to hard code colors in the html. Classes are much better.
Noted, Ill use it then. Thank you!
After editing the header, which was adding line breaks. I was able to make it to this.
http://puu.sh/e9ul9/f8ab70c0ff.png
(2015-01-06, 02:10 AM)Casey S Wrote: [ -> ]The following bugs exist in the v2 of the theme.

1. Social buttons are missing in the showthread templates.
2. Header is missing on all pages.
3. Quick Reply is unthemed.

hello
im sorry but all those bugs u mention are not on the theme
the header exists on all pages(except if u create a new page and dont include the header template)
social icons are not and wasnt on the showthread (originally) so its normal
the fast reply uses the same classes as the first build so its "themed" and it haves same visual as before


im a bit new designing themes so pls dont take it bad Wink
(2015-01-06, 05:06 PM)subzr1 Wrote: [ -> ]
(2015-01-06, 02:10 AM)Casey S Wrote: [ -> ]The following bugs exist in the v2 of the theme.

1. Social buttons are missing in the showthread templates.
2. Header is missing on all pages.
3. Quick Reply is unthemed.

hello
im sorry but all those bugs u mention are not on the theme
the header exists on all pages(except if u create a new page and dont include the header template)
social icons are not and wasnt on the showthread (originally) so its normal
the fast reply uses the same classes as the first build so its "themed" and it haves same visual as before


im a bit new designing themes so pls dont take it bad Wink

It's a great theme. I was able to fix problems 1 and 3 on my own. but the header issue. I have no clue to fix.
can u send a link so i can see whats wrong
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32