Red Sample

Started by Diego Andrés, February 02, 2014, 06:23:51 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Diego Andrés

Link to the theme


Free & Premium Responsive Themes for SMF




Red Sample
Developed by Diego Andrés

Features
  • Logo URL
  • Custom Copyright
  • Social Networks


Demo Online
GitHub
Last Edit: July 05, 2023, 08:22:35 PM by Diego Andrés

CoolMaster

Me esta gustando :v Pero pasa una imagen de como se ve el perfil despegable!
[/b]

Diego Andrés

Quote from: CoolMaster on May 24, 2014, 10:16:52 PM
Me esta gustando :v Pero pasa una imagen de como se ve el perfil despegable!
[/b]

Puedes ver la demo en vivo del theme en nuestro demosite.

ForumMix

Hello,

I was wondering how to remove the animation on these buttons. I want these buttons fixed, but every time to press so flashing button to.

I've been looking for index.css and the row corresponding to these buttons, but does not find the correct line of text.

How do I disable this so the buttons are solid. I hope you understand what I mean.

I enclose a picture of these buttons and the theme as it relates to this theme - http://smftricks.com/index.php?action=downloads;sa=view;down=39#forum

Thanks in advance

Diego Andrés

I'll give it a check and will come back here with the solution.
Don't forget to bump

ForumMix


Diego Andrés

Okay, just came out of bed  :P

Remove this from index.css
button:focus, .button_submit:focus, #show_reply_button:focus, #input_submit:focus, #input_cancel:focus
{
background: #ad1d1d;
box-shadow: 0 0 10px #000000;
}


And you can remove the background here, so that will kill the animation
button:hover, .button_submit:hover, .button_reset:hover, #show_reply_button:hover, #input_submit:hover, #input_cancel:hover
{
background: #801815;
color: #f5f5f5;
}


ForumMix

Superbly. It worked great. Thanks for the help.

justjim


Do you have any plans to add the Goggle+ button in the footer options?

Or is there an easy way to do so?

Diego Andrés

No, but we can help you to do it, just leave the icon

justjim

Thank you. I have attached the image resized to 32px X 32px matching the size of the other social buttons.

Diego Andrés

Sorry, my fault. It has no sense to attach the image lol.
Just add it to /Themes/RedSample/images/theme/google.png

And then make this changes.



css/index.css
add at the end of the file
#quicknav a.google {
background: url(../images/theme/google.png) no-repeat !important;
background-position: 0 0 !important;
}


index.template.php find
if(!empty($settings['twitter_username']))
echo '
<li><a class="social_icon twitter" href="http://twitter.com/', $settings['twitter_username'] , '" target="_blank"></a></li>';


Replace with
echo '
<li><a class="social_icon google" href="http://" target="_blank"></a></li>';

if(!empty($settings['twitter_username']))
echo '
<li><a class="social_icon twitter" href="http://twitter.com/', $settings['twitter_username'] , '" target="_blank"></a></li>';


And just put your google url here:  href="http://"

Regards

justjim

Hi Diego

Thank you for help, it worked beautifully.


Here is a link to my site:


http://vendorrender.com/

Jim
Last Edit: February 18, 2015, 04:40:09 PM by justjim

Diego Andrés

That's because you didn't put your url there.

href="{url/link}"

justjim

Hi Diego

You replied before I edited my last reply - I found the problem and corrected it - it was because I had too many " in the code line. But its fixed.

Thanks