Attached Node styling problem---trying to transfer styling to css sheet and not use default styling.
crispy - September 27, 2005 - 07:27
Hi,
I am using the Attached Node module with version 4.6 of drupal.
I noticed in my source code, that the attached node is placed in a div with the following style:
style=' right:0px; width:100%; height: 250px; overflow:hidden; background-color: #fff; margin:10px 7px 20px 10px; padding: 10px; border:1px #2175cc dashed' I went into attachednode.module and changed that to "<div class='attachedNode'>" (so I can style in my css sheet, but amazingly, the old styling still appears.
Is this the correct way to change styling for attached node and why doesn't the new code kick in?

I deleted the attached node
I deleted the attached node directory in the module directory and the node attachment still works, so I am guessing this feature was integrated into the 4.6 version.
But I where do I replace the default styling with my own? I checked node.module and couldn't find any applicable code.
Please help. I have checked the old posts but couldn't find anything about this.
Any help on this? Could
Any help on this? Could someone just please tell me where in drupal the inline styling to the attached node div is added?
I solved the problem by
I solved the problem by searching for the style in attached_node.module and repalced it with a class="attachednode" so I can style it from external css. It seems I have to disable module and then re-enable before new code kicks in.