Advertisement:

Author Topic: Advertisement Placement on White Space  (Read 1738 times)

sanjeevme

  • Newbie
  • *
  • Posts: 11
Advertisement Placement on White Space
« on: January 14, 2017, 05:37:52 pm »
Dear Friends,

I need to place advertisement on white space of some pages. but don't get any path, where to place the ads. All pages of screen shot is attached.

Pages are as like
1. contact us
2. login
3. publish post
4. registration page

kindly check all attached file. valuable comments are welcome

Thanks
Sanjay

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Advertisement Placement on White Space
« Reply #1 on: January 20, 2017, 12:00:22 am »
you will find this in
  • contact.php
  • item-post.php
  • user-login.php
  • user-register.php
but you need to change the files. if i'm right there all use an offset to center the main column, you need to add colums to the left and right side too.


e.g.
Code: [Select]
<div class="col-md-8 col-md-offset-2">there you have to remove the col-md-offset-2

then add a col-md-2 before and after the whole container, so that you have the following structure


Code: [Select]
<div class="col-md-2">Here your left sided advertisements<>
<div class="col-md-8">Here the main content of the original container<>
<div class="col-md-2">Here your right sided advertisements<>

sanjeevme

  • Newbie
  • *
  • Posts: 11
Re: Advertisement Placement on White Space
« Reply #2 on: January 22, 2017, 05:11:38 pm »
Hi Liath,

Greetings for the day!

Thanks you so much for your reply. I'll apply for the same. if i do face any issue then i'll come back again to disturb you. many many thanks again


Best Regards

Sanjay
« Last Edit: January 22, 2017, 05:15:01 pm by sanjeevme »

sanjeevme

  • Newbie
  • *
  • Posts: 11
Re: Advertisement Placement on White Space
« Reply #3 on: January 26, 2017, 06:06:09 pm »
Hi Liath,

Thanks again.i'm facing little bit problem after placement of code. as per your suggestion i did apply same procedure. Please find the example below for details. Ads works fine for one side but not for both sides.


Page fluctuating
<div class="col-md-2">Right sided advertisements</div>
<div class="col-md-8">
<div class="col-md-2">left sided advertisements</div>


Page works fine
<div class="col-md-2">Here Right sided advertisements</div>
<div class="col-md-8">

I'm using osclasswizards theme and my codes for respective pages are this way


Contac us.php
user-login.php
user-register.php

<div class="col-md-4 col-md-offset-4">


item-post.php
<div class="col-md-6 col-md-offset-3">


For details please find the attached screenshot.


Looking forward your valuable response

Thanks
Sanjay

« Last Edit: January 26, 2017, 06:14:12 pm by sanjeevme »

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Advertisement Placement on White Space
« Reply #4 on: January 26, 2017, 10:00:01 pm »
you can take a look here, to learn morre about bootstrap
https://v4-alpha.getbootstrap.com/layout/grid/


this system is used as framework in this template

sanjeevme

  • Newbie
  • *
  • Posts: 11
Re: Advertisement Placement on White Space
« Reply #5 on: January 28, 2017, 01:36:14 pm »
Hi Liath,


Thanks for your reply. one request how to put the advertisements within the every post(LIST VIEW). for details please find the attached screenshots.


Looking forward your valuable response

Thanks
Sanjay

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Advertisement Placement on White Space
« Reply #6 on: January 28, 2017, 08:31:18 pm »