Edit "My Accounts"
Where in the members.php or in dolphin would i change the size of the page blocks? I want to change them ONLY for the "My Account" page. I'm having some difficulty in doing so.
Right now they are all about 373 or 374 pixels wide. I would like (only in My Accounts page) for the left side (PageBlocks 1) to be 305 pixels, and the right side (PageBlocks 2) to be 435 pixels wide.
I dunno if its possible to do this just for the "My Accounts" page without affecting the rest of the other pages but would appriciate ANY help plz.
I would start with the index.css for the index page. If it is not there then move to the General.css
to adjust fonts look in the anchor.css
You can perform this manipulating the .css files.
------------------------------------
templates\tmpl_uni\css\member_panel.css (line 14, class .memberLeftDiv):
width:305px;
templates\tmpl_uni\css\member_panel.css (line 25, class .memberRightDiv):
width:435px;
------------------------------------
That should do.