منتدى استراحات زايد

منتدى استراحات زايد (http://vb.ma7room.com/index.php)
-   منتدى أخبار المواقع والمنتديات العربية والأجنبية (http://vb.ma7room.com/forumdisplay.php?f=183)
-   -   Forum Poor CSS method used by vB (mixing exact pixel widths with %- WITH FIX) (http://vb.ma7room.com/showthread.php?t=300825)

محروم.كوم 01-04-2010 10:20 PM

Forum Poor CSS method used by vB (mixing exact pixel widths with %- WITH FIX)
 
I have just taken the first, very big step to styling my forum. First step was to simply wrap my new layout around vB and work from the inside out.

Easily done.

However I have now bumped into what I can only explain as an oversight in the front-end developers.

The width of the content area of my forum is 868px, and I ran into the following problem:
Attachment 41212

In the screen shot there are 2 <span>s which are supposed to be floated side by side, one at 49% wide with a 10px margin on the left (to inset it a bit) and another which is 50% wide.

What's intended is that the 1% missing from the defined width is supposed to accommodate the 10px margin, however, when the users reduces the forum display area (which I have to 868px) the 1% "free" for width is less than 10px, so you have 50% + 49% + 10px (10px being >1%) and as width, margin and padding all contribute to the overall "width" of an element, and the 2 elements are bigger than 100%, so they don't fit and the latter goes to the next line.

Suggested fix:

Float the second span right and remove width declaration (it's only a checkbox)

or

You could swap the two <span>s around and apply this CSS:
HTML Code:
.postdate old {
float: none;
margin-right: 80px;
margin-left: 10px;
}

.nodecontrols {
float: right;
}
The advantages of this method is that it will cause the 1st span to take up all space apart from a few fixed pixels for the second span with the checkbox.
These methods are done by editing postbit.css and the postbit templates.

I hope there are no more instances like this, I'm using a narrow layout as my forum is tailored to netbooks/slate pcs, where it is not uncommon to have a max resolution of 1024 x 600 px.
Attached Images


الساعة الآن 11:34 PM

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.5.2 TranZ By Almuhajir


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227