Is there a way to turn this into buttons

  • Anonymous

    #2723

    Hi again guys. Is there a way to add buttons or change the color of the text as it appears in the screenshot of my site?

    http://s1200.photobucket.com/albums/bb330/stevepure/?action=view&current=Untitledaas.jpg

    Anonymous

    #21621

    Sure, you could do something like this with your css:

    #next-post {
    background-color: #FF0000;
    border: 1px solid black;
    padding: 3px;
    }
    #previous {
    background-color: #FF0000;
    border: 1px solid black;
    padding: 3px;
    }

    Of course, my example is pretty ugly, you probably need to tweak it to make it blend with your site. I used “harsh” colors for illustrative purposes.

    EDIT: Or, to change the color of the text, just add color:#FF0000; to both of the elements above.

    Mod

    Kenneth John Odle

    #21622

    You might want to check out this site, which uses Graphene in extraordinarily creative ways: http://www.gendji.eu/?p=879

    Anonymous

    #21623

    Haha… I forgot about him. I remember helping with that one 🙂

    steve5000

    #21624

    Josh, when I add the color:#f4df10; to the element it just changes the color of the arrows and not the text.

    Anonymous

    #21625
    #previous, #previous a, #previous a:visited, #next-post, #next-post a, #next-post a:visited {
    color: #f4df10;
    }

    Gives,

    steve5000

    #21626

    Thanks guys.

    It didn’t look like that when i used your code Prasanna, so i used a little of both and enlarged the box.

    What code would i add to center the text inside the box (lower the text a little)?

    Mod

    Kenneth John Odle

    #21627

    add

    padding-top: 6px; or however much you need.

    steve5000

    #21628

    Thanks

Viewing 9 posts - 1 through 9 (of 9 total)

  • You must be logged in to reply to this topic.