hi, i changed the image of the backgroun main.. and some layout changed.
Does anyone can point me, what happened?

As you can see. Friend suggestions are showing wrong. and friend list in the center is showing in 1 line. and before the friend suggestion was showing 1 line, and friends were in 2 lines..
I have also seen that the thumbnail is showing wrong too. as you can see. the thumbnail has been divided.
Does any one can help me?
as you can see the pictures are a mess too. look.

anyone?
|
|
I don't think the background has anything to do with the other photos being tiled like the are. Exactly what did you change? My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
this is what i did,
i was curious to use the edit css panel from admin section, and i went to general.css and i chnaged the name of the file from bg_main.jpg to another name .jpg... and i saved it... when i saved it, it changed the background but some layouts too.
thats exacly what i did
|
this is what i did,
i was curious to use the edit css panel from admin section, and i went to general.css and i chnaged the name of the file from bg_main.jpg to another name .jpg... and i saved it... when i saved it, it changed the background but some layouts too.
thats exacly what i did
Did you try changing it back to the original to see if everything goes back to the way it was? Want to make sure you ruled that out before troubleshooting further.
|
|
Try changing it back to confirm that was the only change you made and see if it all goes back to normal.
|
this is what i did,
i was curious to use the edit css panel from admin section, and i went to general.css and i chnaged the name of the file from bg_main.jpg to another name .jpg... and i saved it... when i saved it, it changed the background but some layouts too.
thats exacly what i did
What template are you using?
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
right now i have changed to the uni the default.. but the photos still mess. i was using bluedate |
right now i have changed to the uni the default.. but the photos still mess. i was using bluedate
If you changed it back to the original image and the photos are still messed up, then you must have made a change to the CSS during your first edit. Try using the original css from the dolphin download to compare it against.
|
right now i have changed to the uni the default.. but the photos still mess. i was using bluedate
If you changed it back to the original image and the photos are still messed up, then you must have made a change to the CSS during your first edit. Try using the original css from the dolphin download to compare it against.
Normally Signal I would agree with you, but I've run firebug on this site and that's not the case this time.
The site is http://mipuntope.com/
And after running Firebug on this site I notice the following things.
1. This has to be in the base files and not in the template itself, as the problem recurs with or without his template on the site.
2. It appears to be stemming from a mod he installed for the new offline/online images.
3. It's not in the CSS files, it in his php files.
Here is the firebgug on it:
height:119px;
margin-bottom:10px;
margin-left:5px;
margin-right:5px;
margin-top:0;
width:110px;
}
Notice the grouping starts with element. Now I can make the issue disappear partially if I do the following to his code in firebug:
height:119px;
background-repeat:no-repeat;
margin-bottom:10px;
margin-left:5px;
margin-right:5px;
margin-top:0;
width:110px;
}
Notice the input of: background-repeat:no-repeat; into the element field to correct the issue. Now, this will partially correct the issue, in that it will stop the pic from repeating, however it still leaves the pic centered at the top of the box instead of center center as it should be. I have hunted everywhere for the php on this, and the only thing I can figure is the mod he used for the online/offline might be the issue, but I can't even guarantee that. I can guarantee this is not within the css files, as you can see in firebug that it's calling these properties on the HTML side of the screen, not the CSS side. If it was CSS then we would get a file path & line #.
Time for the more experienced coders to find the solution to this issue. May mrpowless or Artur will stop in and locate the solution for this.
|
Def. there ppl who like to help a lot.. thanks to everyone in advance.
I think MRpowless will help me.. He is amazin guy.. its really har to find honest people these days.
God bless you all
|
check file templates/base/general.css
find code below, do you have code with red color?? if not, add this code.
div.thumbnail_block img
{
border:1px solid #9B9A9A;
background-position:center;
background-repeat:no-repeat;
}
|
OKWeb, I was working with this young man the other day on this and that was my first thought also. Actually, when I tried to replicate the problem on my test site I was able to create it by taking the no-repeat; and changing it to repeat;
But when our OP checked his code, it was already in the general.css file at 165 approx. where it belonged.
Further, when I was recreating the profiles on my site, I found many things that would seem to be handled in CSS are actually handled in the php file with an html type of placement line such as:
<div img src="/media/images/filename.jpg" width:60px; top:150px; left:200px;"> as an example for you. In this instance, he is looking for a similiar line in the php files. Thing is, I've been through all the files I could think of relating to this on the test site and can not find a line similiar that handles background:repeat; or one could even be placed in. If the php files has a similiar line in it, then it's going to over rule any css order that is given. This is why the site won't respond in firebug to a:
background:no-repeat; in any of the css files that relate to the pics. The dang thing is php controlled and the issue is to find where it's pulling the element from in order to correct it.
|
ok problem fixed..
Amazing.. its very important to check your log errors.
what happened was very simple, i checked the log error and it was showing me permissions of base/css/ was not readable. Grr.
well i changed to permissions and problem fixed. i have to make my template again. oh well.
Thanks to everyone.. you guys are really good people here.. If there is anyway i can help you with. let me know.
God bless you all
|