Logged Out
Create an Account
Login:
Password:

Forgot your password?
Trouble getting Changes to news/Home Layout to Go live

Trouble getting Changes to news/Home Layout to Go live
[Back to Index]
Thread Tags
Primary: [Advanced Layout]
Secondary: None

I have edited our News/Home layout in Dreamweaver and I can test it! and when I click on Current new News/Hompage file it reflects my changes. When I click on Go Live it tells me that my advanced Layout has been deployed. But my News/Home page is not reflecting the changes.

Thank you,
Totally Lost
Your last step is to head to ADmin > News, and choose the new layout from the dropdown. I realize this isn't the most intuitive, at current, and that "Go Live" should take the new layout live properly, but it doesn't at the moment.


--
It's all in the reflexes.
Quote by Chops
Your last step is to head to ADmin > News, and choose the new layout from the dropdown. I realize this isn't the most intuitive, at current, and that "Go Live" should take the new layout live properly, but it doesn't at the moment.



Great Thanks for the quick response! I thought I wasmissing something simple. Now I jus have to add the back ground we were using before.

Hmmm not sure how to get the Background to show up like it does on the other pages?? Any ideas. Sorry being brain dea and I have not had enough coffee
What's your site's address so I can have a look?


--
It's all in the reflexes.
Quote by Chops
What's your site's address so I can have a look?




http://ttwag.dkpsystem.com/news.php
Alrighty, looking at your page, you've got a whole slew of problems, particularly that the news page that you've uploaded is hard-coded. This means that any new news posts you make (or any changes to existing news posts) will simply be ignored.

You'll want to look at the code of the existing news pages to see how to integrate it all, because in it's current form, it's not much use as is.

Admittedly, there's a documentation problem here with regard to this particular Advanced Layout Options section, and the documentation is in the works.

For now, here are the code for the current pages. You'll want to make sure you read this as raw HTML code:

News Only: http://www.dkpsystem.com/settings/www/forumlayout/4/news.html
Side-by-side: http://www.dkpsystem.com/settings/www/forumlayout/11/news.html
Simple with Welcome: http://www.dkpsystem.com/settings/www/forumlayout/10/news.html
Standard: http://www.dkpsystem.com/settings/www/forumlayout/12/news.html
Two Above: http://www.dkpsystem.com/settings/www/forumlayout/14/news.html
Two below: http://www.dkpsystem.com/settings/www/forumlayout/15/news.html


--
It's all in the reflexes.
Quote by Chops
Alrighty, looking at your page, you've got a whole slew of problems, particularly that the news page that you've uploaded is hard-coded. This means that any new news posts you make (or any changes to existing news posts) will simply be ignored.

You'll want to look at the code of the existing news pages to see how to integrate it all, because in it's current form, it's not much use as is.

Admittedly, there's a documentation problem here with regard to this particular Advanced Layout Options section, and the documentation is in the works.

For now, here are the code for the current pages. You'll want to make sure you read this as raw HTML code:

News Only: http://www.dkpsystem.com/settings/www/forumlayout/4/news.html
Side-by-side: http://www.dkpsystem.com/settings/www/forumlayout/11/news.html
Simple with Welcome: http://www.dkpsystem.com/settings/www/forumlayout/10/news.html
Standard: http://www.dkpsystem.com/settings/www/forumlayout/12/news.html
Two Above: http://www.dkpsystem.com/settings/www/forumlayout/14/news.html
Two below: http://www.dkpsystem.com/settings/www/forumlayout/15/news.html


OK I get it.
I need to just change the underlying code so that it still works.
Essentially what I am trying to do is change the layout so that the gallery is in a row above the blogs and the blogs are in a row at the bottom.
So I just need to figure out how to change the <td> tags to <tr> tags correct?


Yeah, that would be mostly it.

TR = Row
TD = Cell

The following is one row with two cells

<table>
	<tr>
		<td></td>
		<td></td>
	</tr>
</table>



The following is two rows, each with one cell

<table>
	<tr>
		<td></td>
	</tr>
	<tr>
		<td></td>
	</tr>
</table>


--
It's all in the reflexes.
Yeah cool I figured it out still needs a little tweaking but much closer now!!!

Thanks
DKP Nooob!
WOOOT! I got it to do what I wanted!
Now I think I have to research other Gallery types.


[Back to Index]