Advertisement
Guest User

popup link styling

a guest
Apr 17th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Instructions:
  2.  
  3. go to the css section and paste something like this to control the style of the popup links.
  4.  
  5.  
  6.  
  7. .popup a{
  8. font-family: times;
  9. font-size: 10px;
  10. color: #000000;
  11. -moz-transition-duration:0.3s;
  12. -webkit-transition-duration:0.3s;
  13. -o-transition-duration:0.3s;
  14. }
  15.  
  16. .popup a:hover{
  17. color: #a0a0a0;
  18. -moz-transition-duration:0.3s;
  19. -webkit-transition-duration:0.3s;
  20. -o-transition-duration:0.3s;
  21. }
  22.  
  23.  
  24.  
  25. AND make sure to replace "popup" with whatever the css class is that controls how the popup looks.
  26. you will also have to change the styling around to match what you have on your blog.
  27.  
  28. I would suggest looking for the link styling for your blog and copying that to get it to look the same. It should look something like this:
  29.  
  30.  
  31.  
  32. a {
  33. blah blah blah
  34. }
  35.  
  36. a:hover{
  37. blah blah blah
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement