PDA

View Full Version : Please Help urgent!


dirtysouth
08-14-2013, 11:29 PM
Hey guys I am developing a forum and came across an issue which I dont know how to fix.

This issue happened when I installed VbNotification, I removed the mod from products but the problem still persists.

Issue:

Doc_width and Margin only change the size of the header+footer but not the forum table it self.

I have tried to reinstall the theme and disable all plugins, problem still persists.

Thanks

tbworld
08-14-2013, 11:36 PM
Hey guys I am developing a forum and came across an issue which I dont know how to fix.

This issue happened when I installed VbNotification, I removed the mod from products but the problem still persists.


Issue:

Doc_width and Margin only change the size of the header+footer but not the forum table it self.

I have tried to reinstall the theme and disable all plugins, problem still persists.

Thanks


When you remove a product you must also remove the files associated especially '.xml' files. If that doesn't work you should visit the author's site. If it is a problem the question would probably be already posted (hopefully answered) there.

dirtysouth
08-14-2013, 11:56 PM
Here is the demo forum with the problem, I have deleted all xml files and so forth but no luck at all. http://209.217.249.85/~dirty/forum.php

tbworld
08-15-2013, 12:13 AM
Here is the demo forum with the problem, I have deleted all xml files and so forth but no luck at all. http://209.217.249.85/~dirty/forum.php

While I am snooping at this. Check your 'additional.css' template and check to see if there isn't additional CSS there modifying your style.

When you removed the XML files. You only removed the 'xml' files for that product right?

--------------- Added 14 Aug 2013 at 18:16 ---------------

Here is the demo forum with the problem, I have deleted all xml files and so forth but no luck at all. http://209.217.249.85/~dirty/forum.php

I do not know your theme... but I looked at your additional.css and you have the width set as
.main_wrap {
margin: 0 auto; /* this sets the margin right and left to AUTO - which essentially 'centers', but to both ends of the screen */
width: 1300px; /* this makes it fixed width */
}

Is that really what you want. Thats pretty wide fixed width for anything but desktop stations?

dirtysouth
08-15-2013, 12:37 AM
I just reinstalled all css and templates.

The issue I am facing is the same, please check http://209.217.249.85/~dirty/forum.php?styleid=106

the doc_width is now at 930 problem still pursues...

--------------- Added 1376530917 at 1376530917 ---------------

Header is fixed at 930 so is the footer but the content of the forum for some reason, is thrown out of borders (fluid).

--------------- Added 1376531053 at 1376531053 ---------------

I am willing to pay 10 $ for this issue who ever can help me find the cause of this error. I cannot fix it on my own.

tbworld
08-15-2013, 12:46 AM
I tried firefox, chrome. I did not see anything out of borders. Is that the url for the page you are seeing out of boarders. What browser are you testing width.

Are you saying that what you are looking for is a margin between your browser window and your page text?

Make sure you clear your browser cache too, if that is not the case.

Max Taxable
08-15-2013, 12:55 AM
Clear your browser cache, s0n. It caches CSS and templates so you might not see changes you made. I see no width problems either, at the URL you linked.

tbworld
08-15-2013, 12:57 AM
Try adding this to the bottom of your additonal CSS.

Test CSS


body { margin 0 15px !important }
main_wrap { margin 0 15px !important }

What I want to know is this the look you are after?

dirtysouth
08-15-2013, 12:59 AM
Originally the Welcome message and forum content (forums & titles) were aligned with the header,navbar width. The red background (title etc) title_bg was extended to whole screen ( as you see in the edited attachement).

The sidebar looks clustered due to the fact I photoshop'd how the original layout looked like.

dirtysouth
08-15-2013, 01:14 AM
Please note the style uses a js file, more or less it might be causing the distortion.

http://209.217.249.85/~dirty/clientscript/tf_paragon_scripts.js

Zachery
08-15-2013, 01:16 AM
Its probably your custom ads, that are breaking the style.

tbworld
08-15-2013, 01:17 AM
Originally the Welcome message and forum content (forums & titles) were aligned with the header,navbar width. The red background (title etc) title_bg was extended to whole screen ( as you see in the edited attachement).


Okay I think I understand. If you want to float things to the left, your going to have to get rid of your fixed width and set width to auto. Then you can set your margin to '0'.

You have a couple of selectors you can alter.

.main_wrap
body, html

Try this first...


.main_wrap {
width: auto !important;
margin: 0 !important;
}
When your done remove the '!important'. That will only mess you up down the line.

--------------- Added 14 Aug 2013 at 19:19 ---------------

Its probably your custom ads, that are breaking the style.

Good point.... I had adblocker on and didn't even see the ad's. I could not understand -- unless he modified the CSS already -- why the style would be different then the authors intent.

ForceHSS
08-15-2013, 01:27 AM
Two errors I have noticed on your site

TypeError: $(...).tipsy is not a function
http://209.217.249.85/~dirty/forum.php
Line 138

TypeError: $(...).lavaLamp is not a function
http://209.217.249.85/~dirty/forum.php
Line 59


Warning: Invalid argument supplied for foreach() in [path]/includes/class_bootstrap.php(430) : eval()'d code on line 6

dirtysouth
08-15-2013, 01:30 AM
Its probably your custom ads, that are breaking the style.

Ah my dear that worked! I cant believe the ads were responsible for this , I had them running for couple of days now....... buysellads are really hard to center so I used div tag, I am not sure if that caused a template error of some sort.

tbworld
08-15-2013, 01:40 AM
Yep smart that @zachery is :)