Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

can anyone tell me why

Featured Replies

You are not aligning the text to the left and therefore the text-align: center; from the body style is still being applied. Therefore change your li within the ul to text-align: left;

ul.tick li { background-image:url(../img/tick.png); background-position:0 6px; background-repeat:no-repeat no-repeat; 
list-style-image:initial; list-style-position:initial; list-style-type:none; font-size:1.4em; font-family:"museo 300"; font-weight:normal; line-height:1.6em;text-align: left;}

By the way you also have a p tag in your left ul which is semantically incorrect:

<ul class="tick">
           	<li>Logo Design, brand identity and strategy</li>
               <br/>
               <p>More coming soon</p>

           </ul>

Should be:

<ul class="tick">
           	<li>Logo Design, brand identity and strategy</li>
               <li>More coming soon</li>

           </ul>

Or:

<ul class="tick">
           	<li>Logo Design, brand identity and strategy</li>
               </ul>
<p>More coming soon</p>                

  • Author

excellent thanks for the <p> section

 

regarding the align left. it works but the text goes over the tick image. any ideas i tried this but toook it out as couldnt get it to fit.

Something like

 

ul.tick li {
   background: url("../img/tick.png") no-repeat 0 6px;
   font-family: "museo 300";
   font-size: 1.4em;
   font-weight: normal;
   line-height: 1.6em;
   list-style-type: none;
   text-align: left;
   padding: 0 0 0 25px;
}

Edited by mteam

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.