COZY Campus Adult Webmaster Forums

 
 
 


Go Back   COZY Campus Adult Webmaster Forums > Newbie Help

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-14-2007, 01:48 PM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
Can I get some stylesheet help?

My problem is that my page displays perfectly in firefox but not in IE.

In IE i have a blue border around my gallery photo links instead of a pink border as in firefox.

My text links are all the correct color in both browsers so i'm running in circles tying to find a solution.

If i can't change it does anyone have an opinion on just taking the border off all together since IE is 60% of my traffic?

I think the pink border adds to the design but in IE i think the blue border detracts from the page.

suggestions, solutions, or feedback?

link in the sig
__________________
Reply With Quote
  #2  
Old 04-15-2007, 12:28 AM
Satan420's Avatar
Satan420 Satan420 is offline
NORML
 
Join Date: Mar 2007
Location: Las Vegas, NV
Posts: 8
First imho it looks good both ways. The blue kinda breaks it up a little. Second can you post that part from your css file?

#storycontent a:link img {
border-color: #your color;
}

#storycontent a:visited img {
border-color: #you color;
}

#storycontent a:hover img {
border-color: #your color;
}

Something like that. Anyways you are probably the only one that would notice this, I know that doesn't make any less annoying.
__________________
Bodistry.com
Host Gator
Reply With Quote
  #3  
Old 04-15-2007, 12:33 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
http://gothicalternative.com/stylesheet.txt

this theme was pretty bare bones when i got it, most of the additions are mine in the design but i haven't gotten into the stysheet at all.
__________________
Reply With Quote
  #4  
Old 04-15-2007, 01:18 AM
Satan420's Avatar
Satan420 Satan420 is offline
NORML
 
Join Date: Mar 2007
Location: Las Vegas, NV
Posts: 8
IE is ignoring your css with regards to this element. Unless someone else has an idea you might remove the borders altogether. Other than that you could put one of those take back the web links on your site, sorry I couldn't be of more help.

__________________
Bodistry.com
Host Gator
Reply With Quote
  #5  
Old 04-15-2007, 06:52 AM
Hyballs's Avatar
Hyballs Hyballs is offline
This is the real me!
 
Join Date: Oct 2006
Location: Australia
Posts: 761
Send a message via ICQ to Hyballs Send a message via Yahoo to Hyballs
Hi balls_deep, How about you do duplicate pages. Ones for IE the others for FF. It means a bit of extra Javascript but it solves the problem.
__________________
"If it feels good, just keep doin it!"

Reply With Quote
  #6  
Old 04-15-2007, 11:50 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
hmm... javascript makes me nervous. I think i may just take out the border all together if i can't change it in the stylesheet.
__________________
Reply With Quote
  #7  
Old 04-15-2007, 01:18 PM
upallnite's Avatar
upallnite upallnite is offline
gone
 
Join Date: Aug 2003
Posts: 1,717
If you're posting by hand you can create a new class for the linked images
class="post-img"
a post-img {
color: #ff009a;
text-decoration: none;
}

But this may work as well
Add in some p classes to the style sheet
p img {
padding: 0;
max-width: 100%;
border: 0px;
}

That should do a no border or
Do the a, visited, hover
for which ever option you do
Reply With Quote
  #8  
Old 04-15-2007, 01:59 PM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
i tried both ways and neither seemed to make a difference.

I think i'm just gonna remove the border.
__________________
Reply With Quote
  #9  
Old 04-15-2007, 02:05 PM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
this worked


img {
border: 2px solid #ff009a;
}

but i can't turn off the border around my feed button. Grrr...

thanks guys
__________________
Reply With Quote
  #10  
Old 04-16-2007, 03:06 AM
zeezyx zeezyx is offline
Cozy Freshman
 
Join Date: Jan 2006
Location: The Heartland
Posts: 36
Send a message via Yahoo to zeezyx
Hey balls

I use IE7 and have just had a look at your page. It loox real good to me. I like the pink borders. It really sets it off. It loox good enough to make me WANT to take a closer look.

Now about your pic; Is that your girl friend and she's real tight and you are real big and you jambed it dri into her butt and went balls deep?
Reply With Quote
  #11  
Old 04-16-2007, 03:41 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
__________________
Reply With Quote
  #12  
Old 04-16-2007, 05:21 PM
scopemaster scopemaster is offline
Cozy Junior
 
Join Date: Feb 2007
Posts: 10
Browser campatability can be a pain in the ass. I know. As a developer and admin of mainstream and adult sites, I run into frequently enough.

I've built a couple sites for clients that are REALLY picky about the site looking identical in IE and FireFox. 'Identical' is something you won't see because of some of the basic differences between how the Gecko engine (FF) and the IE engine works. But, you can come pretty damned close.

But for those really picky clients, I have a server side script that looks at the user-agent string from the request headers and loads the css file that is right for that browser. I know, it means duplicating some work when creating stylesheets, but it can really pay off with site browser compatability and happy clients.

Keep in mind, my solution requires that you have access to the shell where the site is hosted, and know how to script ( Perl, PHP, ASP, etc ), know your way around a .htaccess file and mod_rewrite. Or if you are using a turnkey solution that does not give you the ability to dynamically load css docs into a template, well .. your best help would be check the following site out in both IE and FF.

http://www.csscreator.com/version1/index.php

That tool has enabled me to band out of CSS pretty quickly that worked well in both IE and CSS.
Reply With Quote
  #13  
Old 04-17-2007, 02:22 AM
Cozy Monica's Avatar
Cozy Monica Cozy Monica is offline
Campus Moderator
 
Join Date: Dec 2002
Location: Canada
Posts: 4,730
Make sure you put a # symbol in front of all your hex colors, or firefox will ignore them.

[EDIT]: hrmmm sorry, I just looked at your css file from your link, and I see that you haven't forgotten any # symbols. Sorry I can't be of more help!
Reply With Quote
  #14  
Old 04-17-2007, 05:58 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
Quote:
Originally posted by Cozy Monica
Make sure you put a # symbol in front of all your hex colors, or firefox will ignore them.

[EDIT]: hrmmm sorry, I just looked at your css file from your link, and I see that you haven't forgotten any # symbols. Sorry I can't be of more help!
hi monica, thanks for the help, firefox was always displaying properly, IE is giving me problems. the img code i posted last has worked. I just wish i knew how to create a a class to not outline my feed button (gif file that takes on the img properties from the css filde. Although this is a minor issue compared to the original problem with the blue IE borders.

thanks everyone
__________________
Reply With Quote
  #15  
Old 04-17-2007, 09:45 AM
upallnite's Avatar
upallnite upallnite is offline
gone
 
Join Date: Aug 2003
Posts: 1,717
Quote:
Originally posted by balls_deep
hi monica, thanks for the help, firefox was always displaying properly, IE is giving me problems. the img code i posted last has worked. I just wish i knew how to create a a class to not outline my feed button (gif file that takes on the img properties from the css filde. Although this is a minor issue compared to the original problem with the blue IE borders.

thanks everyone
You have Two border=0 in the image tag Now...

Add border: 0px; to #feed in the css file.
if that don't work add
class="feed" to the img tag
Reply With Quote
  #16  
Old 04-17-2007, 11:20 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
I added

border: 0px;

to the css, no change. I added the img class to the feed button call in my index.php

this is my feed button call.

<div id="feed"><a href="<?php bloginfo('rss2_url'); ?>"><img class="feed" border="0" src="<?php bloginfo('template_url'); ?>/images/feed.gif" width="65" height="65" alt="Feed" /></a></div>

am i calling out the class correctly?
__________________
Reply With Quote
  #17  
Old 04-17-2007, 11:32 AM
upallnite's Avatar
upallnite upallnite is offline
gone
 
Join Date: Aug 2003
Posts: 1,717
Make a backup copy of the css file and then try removing all the # symbles before the classes
like: #feed

On some themes that will work.

or if not replace the old one and add this class
a feed {
border: 0px;
}
Reply With Quote
  #18  
Old 04-17-2007, 11:57 AM
balls_deep's Avatar
balls_deep balls_deep is offline
Amish Pornstar
 
Join Date: Oct 2006
Location: Central PA
Posts: 3,549
Send a message via ICQ to balls_deep
removed # symbols in classes. Major theme corruption.

added the class you listed and still no difference.

so far this is all i have added to the stylesheet I linked earlier in this thread.

img {
border: 1px solid #ff009a;
}

a feed {
border: 0px;
}

I appreciate all the help, if i can't figure it out... it's a minor aesthetic.
__________________
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 06:13 PM.

Support our Cozy adult webmaster forum Sponsors:

Porn Reviews
Honest Porn Reviews
Stroke King Blue Design Studios
Blue Design Studios
  Adult Reviews
Adult Reviews

Pussy Cash FTVCash Etu-Cash Traffic Cash Gold GJ Servers
AdXpansion        

 

CozyFrog.com  |   CozyFlash.com  |   Friends & Links
© 2002-10 CozyCampus.com | Adult Forums for Webmasters! | 18+ ONLY!
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.