Reputation: 5690
I have a site hosted on wordpress.com, free tier. As such I don't have access to CSS. I'd like to make the page full-width but don't find any controls for such. Is this possible?
For example this site refers to controls not seen in my case.
Upvotes: 0
Views: 51
Reputation: 3948
The free plan doesn't have access to "customization" options (see wordpress.com plans comparison for more details) which is the reason why you don't have access to the customizer nor the ability to create custom templates.
So, right now your options are:
Upvotes: 1
Reputation: 398
You will need to use Inspect tool to find out the CSS classes used by your theme to define the content area.
Once you have found the CSS classes you can apply CSS in order to adjust it’s width to 100%. An example could be the following CSS code. However, please note that the class you have to use depends on your theme:
.content-area {
width: 100%;
margin: 0px;
border: 0px;
padding: 0px;
}
Upvotes: 0