CSS Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignCSS Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old September 23rd, 2012, 08:13 AM
prikgek prikgek is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2012
Posts: 6 prikgek User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 54 sec
Reputation Power: 0
Center rollover images

I would like to center some rollover images on one line, like on www.jansweijer.nl/home.

I've managed to figure out codes for rollover images (www.jansweijer.nl) and I for centering images as I want them (http://www.jansweijer.nl/centered-images)

Somehow, I cannot manage to combine the two. Could you help me do this?

Thanks in advance!

Code for rollover images:
Code:
<div id="parent"><img class="child1" src="http://www.jansweijer.nl/wp-content/uploads/2012/09/IDE.jpg"/><img class="whitespace" src="http://www.jansweijer.nl/wp-content/uploads/2012/09/white.jpg"/><img class="child2" src="http://www.jansweijer.nl/wp-content/uploads/2012/09/Photography.jpg"/><img class="whitespace" src="http://www.jansweijer.nl/wp-content/uploads/2012/09/white.jpg"/><img class="child3" src="http://www.jansweijer.nl/wp-content/uploads/2012/09/Graphic.jpg"/></div>


Code:
/**** Industrial Design ****/

.rolloverIDbutton a
{
display: block;
width: 165px;
height: 165px;
background: url('http://www.jansweijer.nl/wp-content/uploads/2012/09/IDbutton.jpg') no-repeat;
text-decoration: none;
float: left;
}

.rolloverIDbutton a:hover
{
background-position: -165px 0;
}

/**** Graphic Design ****/

.rolloverGDbutton a
{
display: block;
width: 165px;
height: 165px;
background: url('http://www.jansweijer.nl/wp-content/uploads/2012/09/GDbutton.jpg') no-repeat;
text-decoration: none;
float: left;
}

.rolloverGDbutton a:hover
{
background-position: -165px 0;
}

/**** Photography ****/

.rolloverPHbutton a
{
display: block;
width: 165px;
height: 165px;
background: url('http://www.jansweijer.nl/wp-content/uploads/2012/09/PHbutton.jpg') no-repeat;
text-decoration: none;
float: left;
}

.rolloverPHbutton a:hover
{
background-position: -165px 0;
}


Code for centering images:
Code:
<div class="rolloverIDbutton"><a href="http://www.jansweijer.nl/industrialdesign"> </a></div>
<div class="rolloverGDbutton"><a href="http://www.jansweijer.nl/graphicdesign/"> </a></div>
<div class="rolloverPHbutton"><a href="http://www.jansweijer.nl/photography/"> </a></div>


Code:
.whitespace
{  
    width: 35px;  
    height: 165px;  
    border: none;  
    display: inline-block;  
    background: url('http://www.jansweijer.nl/wp-content/uploads/2012/09/white.jpg') no-repeat;
    vertical-align: middle;  
}  

#parent {  
    width: 100%;  
    border: solid 1px;  
    text-align: center;  
    font-size: 20px;  
    letter-spacing: 35px;  
    white-space: nowrap;  
    line-height: 12px;  
    overflow: hidden;  
}  
  
.child1 {  
    width: 165px;  
    height: 165px;  
    border: none;  
    display: inline-block;  
    vertical-align: middle;  
}  

.child2 {  
    width: 165px;  
    height: 165px;  
    border: none;  
    display: inline-block;  
    vertical-align: middle;  
}  

.child3 {  
    width: 165px;  
    height: 165px;  
    border: none;  
    display: inline-block;  
    vertical-align: middle;  
}  

Reply With Quote
  #2  
Old September 23rd, 2012, 04:36 PM
coothead's Avatar
coothead coothead is offline
~ bald headed old fart ~
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: chertsey, a small town s.w. of london, england
Posts: 192 coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 17 h 40 m 52 sec
Reputation Power: 86
Hi there prikgek,

and a warm welcome to these forums.

Check out the attachment to see a possible solution.

coothead
Attached Files
File Type: zip prikgek.zip (36.9 KB, 38 views)
__________________

Reply With Quote
  #3  
Old September 24th, 2012, 02:14 AM
prikgek prikgek is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2012
Posts: 6 prikgek User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 54 sec
Reputation Power: 0
Awesome! I've been trying to figure this out for the past week..

Thanks a lot, I appreciate it!

Reply With Quote
  #4  
Old September 24th, 2012, 02:34 AM
coothead's Avatar
coothead coothead is offline
~ bald headed old fart ~
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: chertsey, a small town s.w. of london, england
Posts: 192 coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level)coothead User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 17 h 40 m 52 sec
Reputation Power: 86
No problem, you're very welcome.

coothead

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignCSS Help > Center rollover images

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap