MyBB Community Forums

Full Version: Flow Theme Free Release
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
Hey how can I change the link color for the sidebar latest threads after they are visited?
(2017-01-09, 08:34 PM)quichelorraine Wrote: [ -> ]Hey how can I change the link color for the sidebar latest threads after they are visited?

You can take there classes or if there are now then simplly add one
And use css something like this:
yourclass:visited {
Color: #1234 !Important;
}
I'm not really sure what element to change in the css. The php for each entry in latest threads is this:
{$collapsed['ths_e']}
Which yields this html:

<td width="23%" class="trow3" style="padding: 7px 5px;border-bottom: 1px dashed #D7D7D7;">
  <strong><a href="[THREAD URL]">Thread Title</a></strong>
  <span class="smalltext">
    <br>
    by <a href="[USER PROFILE URL]">User</a><br>Less than 1 minute ago<br>
  </span>
</td>

So I tried using the following css.

td.trow3 a:visited{
    opacity:0.8;
}

That didn't change anything though. Do you have any advice on how to proceed? Or can you tell me where to find the php executed by the above? Thanks.
Try to add a class in
<a href="[THREAD URL]">Thread Title</a>
Something like this:
<a href="[THREAD URL]" class="latesty">Thread Title</a>
And put css something like:
.latesty:visited{
opacity:0.8;
}
http://5.230.194.112/demo says 404 not found Toungue
Good day mate!
 
I would like to ask if when I test your theme via localhost using XAMPP. Can't load then mybb. Could you please help me, im using the latest mybb version which is 1.8.10.
Hello! The plugins on my website aren't working.
http://fliprpnetworks.com/backflib/index.php
I have uploaded the image folder to the directory of my FTP and it's not working.
(2017-01-14, 09:51 AM)Aericio Wrote: [ -> ]http://5.230.194.112/demo says 404 not found Toungue

Sorry but for some reason I had formatted my host that's why vanished from test forum.
(2017-01-15, 09:31 AM)toospasquil Wrote: [ -> ]Good day mate!
 
I would like to ask if when I test your theme via localhost using XAMPP. Can't load then mybb. Could you please help me, im using the latest mybb version which is 1.8.10.

Sorry but without any evidence I can't even try to help.

(2017-01-16, 04:09 AM)Volvo Wrote: [ -> ]Hello! The plugins on my website aren't working.
http://fliprpnetworks.com/backflib/index.php
I have uploaded the image folder to the directory of my FTP and it's not working.

May I know which plugin isn't working ?
Where do i find this code...

button:hover, input.button:hover, a.button:hover, .post .post_author div.author_avatar img:hover, .popup_menu .popup_item:hover, .thead, .postbit_buttons a, .tipsy-inner, .jGrowl-notification {
background-color: #176ceb;
}

I need to remove the background-color: but can't seem to find it in the css or nothing.
(2017-01-17, 08:58 PM)Limited Edition Wrote: [ -> ]Where do i find this code...

button:hover, input.button:hover, a.button:hover, .post .post_author div.author_avatar img:hover, .popup_menu .popup_item:hover, .thead, .postbit_buttons a, .tipsy-inner, .jGrowl-notification {
background-color: #176ceb;
}

I need to remove the background-color: but can't seem to find it in the css or nothing.

It's because, that css was putted by a js which controls the color of theme, the color picker of the theme, if you don't want those classes to be painted then simplly use like color: #eee !Important, use !Important in front of them.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22