Post by masha4 » Tue Jan 12, 2010 6:30 pm

I need help with how I can add a border to all images without affecting the logo. Below is the code I have in my stylesheet but this puts a border on all images

a img {

border: 1px solid #CCCCCC;
}

Thanks

Newbie

Posts

Joined
Wed Dec 02, 2009 2:13 am

Post by booyakan » Tue Jan 12, 2010 6:39 pm

not sure, but maybe u could go into the files where it actually calls that image and manually put border=0 specifically for just that picture?

New member

Posts

Joined
Wed Jan 06, 2010 4:07 pm

Post by Daniel » Tue Jan 12, 2010 10:02 pm

#content a img {

border: 1px solid #CCCCCC;
}

OpenCart®
Project Owner & Developer.


User avatar
Administrator

Posts

Joined
Fri Nov 03, 2006 6:57 pm

Post by masha4 » Fri Jan 15, 2010 6:49 pm

Daniel wrote:#content a img {

border: 1px solid #CCCCCC;
}
Thanks but after putting the code the logo has border changed to be thick like 2px- only the logo border but all the other imaged are fine.

Newbie

Posts

Joined
Wed Dec 02, 2009 2:13 am

Post by NewMethod » Mon Jan 18, 2010 8:07 am

You could either modify the html inline and add style="border:none" to the image and use your method.. it's a bit hacky.

Or you could do it properly and set the image class attribute (if they haven't already got some way of identifying them, they probably have) and set the border for that in the stylesheet.

New member

Posts

Joined
Sun Jan 17, 2010 11:12 pm


Post by CodeBits » Tue Jan 19, 2010 11:36 am

Why not just add an a img style to the div2 class.

Code: Select all

#header .div2 {
	float: left;
	padding-top: 15px;
	padding-left: 15px;
}
#header .div2 a img {
	border: 0;
}
Or, add a style class to the logo image

Code: Select all

.logo a img {
	border: 0;
}
Then in the header.tpl add the class to the logo src

Code: Select all

<div class="div2"><a href="<?php echo $home; ?>"><img class="logo" src="<?php echo $logo; ?>" title="<?php echo $store; ?>" alt="<?php echo $store; ?>" /></a></div>
The rest of your images will still have a border.

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am
Who is online

Users browsing this forum: No registered users and 18 guests