• Hi

    I’ve created a company site @ https://aqoviadev.azurewebsites.net/

    One of the issue that I was having was around the spacing between each section. I noticed that I was having problems with spacing between each [full_width_section].

    I managed to standardize the spacing by removing the p-tag by adding the following to the functions.php file:

    `remove_filter(‘the_content’, ‘wpautop’);

    I have a number of images on the site, either to link to case studies or partners. In some of my images, the link control has shifted location for some of my images. Can anyone suggest a solution to ensure that everything lines up?

    Regards

    Michael.

Viewing 1 replies (of 1 total)
  • Hi Michael.,

    Paste this code on your style.css file, I hope its working

    .vc_row-fluid.full-width-section::before {
      content: " ";
      display: block;
      height: 50px; //PADDING TOP
      width: 100%;
    }
    .vc_row-fluid.full-width-section::after {
      content: " ";
      display: block;
      height: 50px;  //PADDING BOTTOM
      width: 100%;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Cross browser’ is closed to new replies.