Bootstrap -moving horizontal dividers - twitter-bootstrap-3

my single page bootstrap site has some simple dashed-line horizontal dividers
I've been editing/copy & pasting the code but i cant figure out how to place them where I want.
There is one I don’t want on top of the “our mattresses’ section.
id also like to place a divider between the Oisin & Lir mattresses.
http://www.homecollection.ie/darcy/

There is a block, <div class="divider"></div> that puts in the dashed lines.
If you remove it where you don't want it, they'll go away.
You can also add it where you want them to be added.

Related

MPAndroidChart - CombinedChart - First and last bars aren't visible completely

In CombinedChart by adding chart.setFitBars(true) will make the first and last bars visible.
I need to do the same for combining LineChart with BarChart.
Now, first and last bars aren't visible completely.
I've tried
xAxis.setAxisMaximum(data.getXMax() + 1f);
to extend X-Axis towards right side so that the last bar will get enough space. This did the trick.
But what should I do for left side bar?
setAxisMinimum doesn't help.
After adding setAxisMaximum :
EDIT
I've referred this but it gives the solution for only BarChart.
Got it.
xAxis.setAxisMinimum(-0.5f);
I guess, Edited X-Axis label will make it look good.
For editing labels in MPAndroidchart refer this answer

how to set vertical line to 100% in detaiils section?

i need to create a report like this.. i am using pentaho report
i need to create a vertical line like that...
i tried to use rectangle but still have the same result.
so i have a fix details's height.
i tried to search some documentation but still have no idea to create like this..
from this case i just have 1 row in details, but i must set a height to 100% instead depend on much row in details.
or see this PDF,
http://www.4shared.com/web/preview/pdf/w7A8cniIba?
the vertical line on detail's section not 100% to bottom.
First of all, there is no option to set a height to 100%. But there is a solution, In Details section, you can increase the height of Details section and then drag vertical line to the end of the Details section. Execute and see still if there is a gap between Details section and Report Footer section again increase the Details section up to vertical line will reach to Report Footer section

BigCommerce - how to add an extra column in the category page layout?

I am new to this so I hope my question is relevant and useful to others.
I have a bigcommerce store and I removed the side category display panel from the category page (I did not want a side category to dispay) but this has now left me with only 4 columns of products displayed on a page 5 columns wide. Could any kind person tell me how to add an extra column of products, so that the page width is full again, or how to alter the image size so that 4 columns of product images fills the space previously occupied by 4+sidecategory ?
To change the layout of your category page you require to do change in category.html. As per your requirement you need to remove the below code from the category.html (Any change in this file will reflect in all your category pages)
<div class="Left fleft">
%%SNIPPET_SubCategories%%
%%Panel.SideCategoryShopByPrice%%
</div>
I am saying to remove the entire side column div because you want the full page layout but you can just remove the particular snippets or panels which you don't want but with that sometime what happens is like any panel which is currently not active from admin panel but later whenever it will active then it shows the problem like your layout will display with side column having that particular panel and also your wide column (products column) with 5 products in a row.
After this you have to do change in css file named styles.css, In this file search for the .ProductList li in which you can see the width which is given in percentage to 25 so please make it to 20.
Please save the above files and you can see the changes.
Thanks.

Add lines of text to subtitle of Xcode UITableView

I am using master/detail template in Xcode. I can add text into the maintitle and the subtitle of the table view.
The subtitle only shows one line of text with ... at the end.
I understand that it is telling me that more text is available.
How would I have it give me 2 or maybe 3 lines of text before the ... I tried making the cell larger, but that had no affect.
I don't see any parameters that will increase the number of lines.
thanks
The default cell give you a label with just one line, if you want change it you will need to create your own custom UITableViewCell and add a label wit the number of lines you need:
Customizing UITableViewCells

MS Access Draw line around detail section that can grow

This really shouldn't be hard, I just can't figure out how to do it.
I am making a proposal report that needs to have a border around it. The problem is to get the vertical lines on the side. I can't figure out how to get a line to grow and shrink based on the height of the detail section.
I have used Crystal reports and sure wish Microsoft would learn a few things in regards to MS Access report writing!
I am very comfortable with VBA so have no fears there.
You were right, this isn't so hard. The trick is to use 2 variables, top and bottom. In the PageHeader_Format event you set top to Me.Height, and in the PageFooter_Format event you set the bottom to Me.Top - correction, where correction is a fixed amound you use to fix the right length. I´m not sure where this amount comes from, you just have to try a little bit.
In the Report_Page event you can then draw your line from top to bottom.
Another method that nobody has mentioned is the one using the Line method of the report, outlined in Knowledge Base article 210321. I've used this one for years, and it can be used to draw both lines and rectangles. It's quite handy for invoices that have variable height subreports for the invoice details, but need the vertical lines to change according to the height of the main report detail.
No VBA needed.
Make a dummy grouping that is unique to each detail. For that grouping, set footer to yes.
In your new group footer section that you just created, add your line.
In your detail section, select all the relevant fields that can grow and set Can Grow = Yes
Done!
Edit
Off-topic, I agree that Access Reports could learn a lesson or two from Crystal. But Crystal isn't perfect either. [/flamewar]
Try this one.
Right click on the detail bar and select properties. Set the special effect to “Sunken”. This will put kind of a border around the detail section that resizes with the detail section.
I have tried to get a line to dynamically resize but its catch 22, by the time you know the height of the section (In the On Print event) you cant make any changes!
use the page event coupled with me.line and scaleheight / scalewidth.
I draw a box around the whole page with the following. Play with it and see where you end up. It is very handy for making professional reports. If you want a line in a certain place on a report you can use the controls coordinates. like
me.line(Mycontrol.left,mycontrol.top) - (myothercontrol.left+myothercontrol.width, myother control.top + myothercontrol.height)
Private Sub Report_Page()
Me.Line (0, 0)-(scalewidth -30, scaleheight-30), 0, B
End Sub